PowerTools PlusPak for Windows Forms 8.0J
FontSize プロパティ
使用例 

項目によって表されるFontのemサイズを取得または設定します。
構文
Public Property FontSize As Single
public float FontSize {get; set;}

プロパティ値

項目によって表されるFontのemサイズ。デフォルトは10fです。
解説
このプロパティの値は、ShowFontNamesInFontプロパティがtrueの場合にのみ、項目によって表されるFontに適用されます。
使用例

次のサンプルコードは、GcFontPicker.ItemStyleプロパティ上でFontSizeプロパティを設定して、フォントドロップダウンリスト内の項目によって表されるFontのサイズを設定します。ItemStyle.FontSizeの設定をすべての項目に適用するためには、ShowFontNamesInFonttrueに設定する必要があります。この例を実行するには、以下のコードをSystem.Windows.Forms.Formに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出す必要があります。

private void CustomItemStyleWithFontSize()
{
    this.button1.Visible = false;

    // Create an instance of GcFontPicker control.
    GcFontPicker gcFontPicker = new GcFontPicker();

    // Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker";
    gcFontPicker.Location = new Point(10, 10);

    // Set the size of Font represented by every item.
    gcFontPicker.ItemStyle.ShowFontNamesInFont = true;
    gcFontPicker.ItemStyle.FontSize = 11f;

    // adds gcFontPicker to the form.
    this.Controls.Add(gcFontPicker);
}
Private Sub CustomItemStyleWithFontSize()
    Me.button1.Visible = False

    ' Create an instance of GcFontPicker control.
    Dim gcFontPicker As New GcFontPicker()

    ' Initialize the Name and Location of the gcFontPicker.
    gcFontPicker.Name = "gcFontPicker"
    gcFontPicker.Location = New Point(10, 10)

    ' Set the size of Font represented by every item.
    gcFontPicker.ItemStyle.ShowFontNamesInFont = True
    gcFontPicker.ItemStyle.FontSize = 11.0F

    ' adds gcFontPicker to the form.
    Me.Controls.Add(gcFontPicker)
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

参照

ItemStyle クラス
ItemStyle メンバ
ShowFontNamesInFont プロパティ
ShowFontNamesInFont プロパティ

Send Feedback