MESCIUS SPREAD for Windows Forms 15.0J
ResetFont メソッド (ElementControl)
使用例 

コントロールのフォントをデフォルト値にリセットします。
構文
'宣言
 
Public Overrides Sub ResetFont() 
public override void ResetFont()
解説
このメソッドは、Fontプロパティをデフォルト値にリセットするときに使用します。
使用例
private void Form1_Load(object sender, System.EventArgs e)
{
      control.Text = "Font";
      Font fvalue = new Font("Comic Sans MS",14,System.Drawing.FontStyle.Bold);
      control.Font = fvalue;
}
private void button1_Click(object sender, System.EventArgs e)
{
      control.ResetFont();
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
control.Text = "Font";
      Dim fvalue As Font
      fvalue = New Font("Comic Sans MS", 14, FontStyle.Bold)
      control.Text = "Font"
      control.Font = fvalue
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
      control.ResetFont()
End Sub
参照

ElementControl クラス
ElementControl メンバ
Font プロパティ

 

 


© MESCIUS inc. All rights reserved.