Typeface.Stretch Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the stretch value for the Typeface. The stretch value determines whether a typeface is expanded or condensed when it is displayed.
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
Property Value
A FontStretch value that represents the stretch value for the typeface.
Examples
// 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
Remarks
A font stretch value describes the degree to which a font form is stretched from its normal aspect ratio, which is the original width to height ratio specified for the glyphs in the font.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET