GrapeCity.Win.PlusPak.v80 アセンブリ > GrapeCity.Win.Pickers 名前空間 > FontInfo クラス > ToFont メソッド : ToFont(Single,FontStyle) メソッド |
例外 | 解説 |
---|---|
System.ArgumentException | sizeが0以下か、無限大に評価されるか、または有効な数値ではありません。 またはFontInfoによって表されるSystem.Drawing.Fontが、指定されたstyleをサポートしていません。 |
次のサンプルコードは、ToFont(Single,FontStyle)メソッドを使用して、ユーザーがGcFontPickerからフォントを選択したときに新しいSystem.Drawing.Fontを作成する方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Formプロジェクトを作成し、GcFontPickerインスタンスと、button1という名前のSystem.Windows.Forms.Buttonインスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このイベントハンドラをGcFontPickerインスタンスのGcFontPicker.SelectedFontChangedイベントに関連付けます。
// Change the button1's font using ToFont with the specified font size and style. private void ToFontWithSizeAndStyle(object sender, EventArgs e) { FontInfo selectedFontInfo = (sender as GcFontPicker).SelectedFontInfo; this.button1.Font = selectedFontInfo.ToFont(11f, FontStyle.Bold); }
' Change the button1's font using ToFont with the specified font size and style. Private Sub ToFontWithSizeAndStyle(ByVal sender As Object, ByVal e As EventArgs) Dim selectedFontInfo As FontInfo = TryCast(sender, GcFontPicker).SelectedFontInfo Me.button1.Font = selectedFontInfo.ToFont(11.0F, FontStyle.Bold) End Sub