Typeface.Stretch プロパティ

定義

Typeface の伸縮値を取得します。 この伸縮値により、タイプフェイスが表示時に拡大されるか縮小されるかが決まります。

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

プロパティ値

FontStretch

タイプフェイスの伸縮値を表す FontStretch 値。

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

注釈

フォントのストレッチ値は、フォント フォームが通常の縦横比から引き伸ばされる度合いを表します。これは、フォント内のグリフに対して指定された元の幅と高さの比率です。

適用対象