Typeface.Style プロパティ

定義

Typeface のスタイルを取得します。

public:
 property System::Windows::FontStyle Style { System::Windows::FontStyle get(); };
public System.Windows.FontStyle Style { get; }
member this.Style : System.Windows.FontStyle
Public ReadOnly Property Style As FontStyle

プロパティ値

タイプフェイスのスタイル値を表す FontStyle 値。

// Get the font style value for the typeface.
FontStyle fontStyle = typeface.Style;

if (fontStyle == FontStyles.Italic)
{
    // Perform action based on italic style value.
}
' Get the font style value for the typeface.
Dim fontStyle As FontStyle = typeface.Style

If fontStyle = FontStyles.Italic Then
    ' Perform action based on italic style value.
End If

注釈

3 つの用語は、標準、斜体、斜体のフォントの傾斜を分類します。

適用対象