TextElement.FontStretch プロパティ

定義

要素のコンテンツのフォントの伸縮特性を取得または設定します。

public:
 property System::Windows::FontStretch FontStretch { System::Windows::FontStretch get(); void set(System::Windows::FontStretch value); };
public System.Windows.FontStretch FontStretch { get; set; }
member this.FontStretch : System.Windows.FontStretch with get, set
Public Property FontStretch As FontStretch

プロパティ値

FontStretch

使用する目的のフォント ストレッチ特性。 既定値は、Normal です。

次の例では、Paragraph を例の要素として使用して、FontStretch 属性を設定する方法が示されています。

<Paragraph
  FontFamily="Century Gothic, Courier New"  
  FontSize="16pt"
  FontStretch="UltraExpanded"
  FontStyle="Italic"
  FontWeight="DemiBold"
>
  <Run>
    This text will use the Century Gothic font (if available), with fallback to Courier New.  It 
    will render with a font size of 16 points in ultra-expanded demi-bold italic.
  </Run>
</Paragraph>

次の図は、前の例がどのようにレンダリングされるかを示しています。

スクリーンショット: テキスト プロパティ セットを含むテキスト

次の例では、FontStretch プロパティをプログラムで設定する方法を示しています。

Run run = new Run(
    "This text will use the Century Gothic font (if available), with fallback to Courier New."
    + "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.");
Paragraph par = new Paragraph(run);

par.FontFamily = new FontFamily("Century Gothic, Courier New");
par.FontSize = 16;
par.FontStretch = FontStretches.UltraExpanded;
par.FontStyle = FontStyles.Italic;
par.FontWeight = FontWeights.DemiBold;
Dim run As New Run("This text will use the Century Gothic font (if available), with fallback to Courier New." & "It will render with a font size of 16 pixels in ultra-expanded demi-bold italic.")
Dim par As New Paragraph(run)

With par
    .FontFamily = New FontFamily("Century Gothic, Courier New")
    .FontSize = 16
    .FontStretch = FontStretches.UltraExpanded
    .FontStyle = FontStyles.Italic
    .FontWeight = FontWeights.DemiBold
End With

注釈

この依存関係プロパティには、添付プロパティの使用法もあります。 XAML では、使用法は <object TextElement.FontStretch="value".../>オブジェクト がオブジェクト要素 (通常はフロー要素) 内 TextElementに含まれるオブジェクト要素であり、 はクラスの文字列形式のプロパティ名の FontStretch 1 つです。 コードでは、添付プロパティの使用法が and SetFontStretch メソッドでGetFontStretchサポートされています。 添付プロパティの使用は一般的ではありません。これは、コンテンツ ホストがレンダリングに使用する類似の非アタッチ FontStretch プロパティをサポートするために含TextElementめることができるほとんどの要素であるためです。

依存プロパティ情報

識別子フィールド FontStretchProperty
メタデータのプロパティが次に設定されている true AffectsMeasureAffectsRenderInherits

適用対象