FontStyle 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定要套用至文字的樣式資訊。
此列舉支援其成員值的位元組合。
public enum class FontStyle
[System.Flags]
public enum FontStyle
[<System.Flags>]
type FontStyle =
Public Enum FontStyle
- 繼承
- 屬性
欄位
Bold | 1 | 粗體文字。 |
Italic | 2 | 斜體文字。 |
Regular | 0 | 一般文字。 |
Strikeout | 8 | 中間有線條經過的文字。 |
Underline | 4 | 加上底線的文字。 |
範例
下列程式代碼範例示範如何使用 列舉,將按鈕的 屬性設定 Font 為新的粗體樣式字 FontStyle 型。 此範例的設計目的是要與 Windows Forms 搭配使用。 Create 表單中包含名為 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