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

설명

글꼴 늘이기 값을 글꼴 폼 늘이는 일반 가로 세로 비율에서 원래 너비와 높이 비율 글꼴의 문자 모양에 대해 지정 된 정도 설명 합니다.

적용 대상