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

選択されたフォント名を取得します。
構文
Public ReadOnly Property SelectedFontName As String
public string SelectedFontName {get;}

プロパティ値

選択されたフォント名を表すSystem.String
解説
さらに詳しいフォント関連情報を取得するには、SelectedFontInfoプロパティにアクセスします。
使用例

次のサンプルコードは、SelectedFontNameプロパティの使用方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcFontPickerインスタンスと、button1という名前のSystem.Windows.Forms.Buttonインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをGcFontPickerインスタンスのSelectedFontChangedイベントに関連付けます。

// Change the button1's font to the Font created with the SelectedFontName.
private void CreateFontWithFontName(object sender, EventArgs e)
{
    string selectedFontName = (sender as GcFontPicker).SelectedFontName;
    this.button1.Font = new Font(selectedFontName, 11f);
}
' Change the button1's font to the Font created with the SelectedFontName.
Private Sub CreateFontWithFontName(ByVal sender As Object, ByVal e As EventArgs)
    Dim selectedFontName As String = TryCast(sender, GcFontPicker).SelectedFontName
    Me.button1.Font = New Font(selectedFontName, 11.0F)
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 メンバ
SelectedFontInfo プロパティ
SelectedFontInfo プロパティ

Send Feedback