TextElement.FontWeight プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要素のコンテンツの、最上位レベルのフォントの太さを取得または設定します。
public:
property System::Windows::FontWeight FontWeight { System::Windows::FontWeight get(); void set(System::Windows::FontWeight value); };
public System.Windows.FontWeight FontWeight { get; set; }
member this.FontWeight : System.Windows.FontWeight with get, set
Public Property FontWeight As FontWeight
プロパティ値
目的のフォントの太さ。 既定値は、MessageFontWeight 値によって決まります。
例
次の例では、Paragraph を例の要素として使用して、FontWeight 属性を設定する方法が示されています。
<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>
次の図は、前の例がどのようにレンダリングされるかを示しています。
次の例では、FontWeight プロパティをプログラムで設定する方法を示しています。
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.FontWeight="value".../>
オブジェクト 要素 (通常はフロー要素) 内にTextElement含まれており、値 は列挙型の文字列形式の値の FontWeight 1 つです。 コードでは、添付プロパティの使用は、メソッドでGetFontWeightSetFontWeightサポートされています。 添付プロパティの使用は一般的ではありません。これは、コンテンツ ホストがレンダリングに使用する類似の非アタッチFontWeight
プロパティをサポートするために含TextElementめることができるほとんどの要素であるためです。
依存プロパティ情報
識別子フィールド | FontWeightProperty |
メタデータのプロパティが次に設定されている true |
AffectsMeasure、AffectsRender、Inherits |