TextElement.FontStyle プロパティ

定義

要素のコンテンツのフォント スタイルを取得または設定します。

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

プロパティ値

FontStyle

目的のフォント スタイル。 既定値は MessageFontStyle 値で決定されます。

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

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

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

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

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

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

依存プロパティ情報

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

適用対象