Font.Style 屬性

定義

取得這個 Font 的樣式資訊。

public:
 property System::Drawing::FontStyle Style { System::Drawing::FontStyle get(); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.FontStyle Style { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Style : System.Drawing.FontStyle
Public ReadOnly Property Style As FontStyle

屬性值

FontStyle 列舉,包含這個 Font 的樣式資訊。

屬性

範例

下列程式碼範例示範如何使用 列舉,將按鈕的 屬性設定 Font 為新的粗體字 FontStyle 型。 此範例的設計目的是要與Windows Forms搭配使用。 建立包含名為 Button1 的按鈕的表單,並將下列程式碼貼到其中。 將 Button1_Click 方法與按鈕的 Click 事件產生關聯。

private:
   void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      Button1->Font = gcnew System::Drawing::Font( FontFamily::GenericSansSerif,12.0F,FontStyle::Bold );
   }
private void Button1_Click(System.Object sender, System.EventArgs e)
{
    if (Button1.Font.Style != FontStyle.Bold)
            Button1.Font = new Font(FontFamily.GenericSansSerif,
            12.0F, FontStyle.Bold);
}
 Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click
    If Not Button1.Font.Style = FontStyle.Bold Then
        Button1.Font = New Font(FontFamily.GenericSansSerif, _
            12.0F, FontStyle.Bold)
    End If
End Sub

適用於