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

作成するSystem.Drawing.Fontのemサイズ(ポイント単位)。
新しいフォントのSystem.Drawing.FontStyle
現在のSelectedFontNameと指定したサイズおよびスタイルを使用して、新しいSystem.Drawing.Fontを作成します。
構文
Public Overloads Function CreateFont( _
   ByVal size As Single, _
   ByVal style As FontStyle _
) As Font
public Font CreateFont( 
   float size,
   FontStyle style
)

パラメータ

size
作成するSystem.Drawing.Fontのemサイズ(ポイント単位)。
style
新しいフォントのSystem.Drawing.FontStyle

戻り値の型

現在のSelectedFontNameと指定したサイズおよびスタイルを持つSystem.Drawing.Font
例外
例外解説
System.ArgumentException

sizeが0以下か、無限大に評価されるか、または有効な数値ではありません。

または

SelectedFontNameによって表されるSystem.Drawing.Fontが、指定されたstyleをサポートしていません。

解説
パラメーターを指定せずにSystem.Drawing.Fontを作成する場合は、CreateFont()オーバーロードメソッドを使用してください。サイズのみを指定してSystem.Drawing.Fontを作成する場合は、CreateFont(float)オーバーロードメソッドを使用してください。
使用例

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

// Change the button1's font using CreateFont with the specified font size and style.
private void CreateFontWithSpecifiedFontSizeAndStyle(object sender, EventArgs e)
{
    this.button1.Font = (sender as GcFontPicker).CreateFont(11f, FontStyle.Bold);
}
' Change the button1's font using CreateFont with the specified font size and style.
Private Sub CreateFontWithSpecifiedFontSizeAndStyle(ByVal sender As Object, ByVal e As EventArgs)
    Me.button1.Font = TryCast(sender, GcFontPicker).CreateFont(11.0F, FontStyle.Bold)
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 メソッド
CreateFont(Single) メソッド
CreateFont メソッド
CreateFont(Single) メソッド

Send Feedback