PowerTools PlusPak for Windows Forms 8.0J
CreateFont() メソッド
使用例 

現在のSelectedFontNameとコントロールのフォントサイズを使用して、新しいSystem.Drawing.Fontを作成します。
構文
Public Overloads Function CreateFont() As Font
public Font CreateFont()

戻り値の型

現在のSelectedFontNameとコントロールのフォントサイズを持つSystem.Drawing.Font
解説
指定したサイズを使用してSystem.Drawing.Fontを作成する場合は、CreateFont(float)オーバーロードメソッドを使用してください。指定したサイズとスタイルを使用してSystem.Drawing.Fontを作成する場合は、CreateFont(float, FontStyle)オーバーロードメソッドを使用してください。
使用例

次のサンプルコードは、CreateFontメソッドを使用して、ユーザーがGcFontPickerからフォントを選択したときに新しいSystem.Drawing.Fontを作成する方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcFontPickerインスタンスと、button1という名前のSystem.Windows.Forms.Buttonインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをGcFontPickerインスタンスのSelectedFontChangedイベントに関連付けます。

// Change the button1's font to the Font created by gcFontPicker.
private void GcFontPicker_SelectedFontChanged(object sender, EventArgs e)
{
    this.button1.Font = (sender as GcFontPicker).CreateFont();
}
' Change the button1's font to the Font created by gcFontPicker.
Private Sub GcFontPicker_SelectedFontChanged(ByVal sender As Object, ByVal e As EventArgs)
    Me.button1.Font = TryCast(sender, GcFontPicker).CreateFont()
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcFontPicker クラス
GcFontPicker メンバ
オーバーロード一覧
CreateFont(Single) メソッド
CreateFont(Single,FontStyle) メソッド
CreateFont(Single) メソッド
CreateFont(Single,FontStyle) メソッド

Send Feedback