Aracılığıyla paylaş


Typeface.Stretch Özellik

Tanım

için Typefaceesnetme değerini alır. Esnetme değeri, bir yazı tipinin görüntülendiğinde genişletilip genişletileceğini veya daraltılıp daraltılmayacağını belirler.

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

Özellik Değeri

FontStretch Yazı biçimi için esnetme değerini temsil eden değer.

Örnekler

// Get the font stretch value for the typeface.
FontStretch fontStretch = typeface.Stretch;

if (fontStretch == FontStretches.Condensed)
{
    // Perform action based on condensed stretch value.
}
' Get the font stretch value for the typeface.
Dim fontStretch As FontStretch = typeface.Stretch

If fontStretch = FontStretches.Condensed Then
    ' Perform action based on condensed stretch value.
End If

Açıklamalar

Yazı tipi esnetme değeri, yazı tipi formunun normal en boy oranından ne derece uzatılmış olduğunu açıklar. Bu, yazı tipindeki glifler için belirtilen özgün genişlik-yükseklik oranıdır.

Şunlara uygulanır