Typeface.Style Propriété

Définition

Obtient le style du 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

Valeur de propriété

Valeur FontStyle qui représente la valeur de style du type de caractères.

Exemples

// 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

Remarques

Trois termes catégorisent l’angle d’une police : normal, oblique et italique.

S’applique à