Typeface.Weight プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
タイプフェイスの相対的な太さを取得します。
public:
property System::Windows::FontWeight Weight { System::Windows::FontWeight get(); };
public System.Windows.FontWeight Weight { get; }
member this.Weight : System.Windows.FontWeight
Public ReadOnly Property Weight As FontWeight
プロパティ値
タイプフェイスの相対的な太さを表す FontWeight 値。
例
// Get the font weight value for the typeface.
FontWeight fontWeight = typeface.Weight;
if (fontWeight == FontWeights.ExtraBold)
{
// Perform action based on extra bold weight value.
}
' Get the font weight value for the typeface.
Dim fontWeight As FontWeight = typeface.Weight
If fontWeight = FontWeights.ExtraBold Then
' Perform action based on extra bold weight value.
End If
注釈
通常、ウェイトの違いは、同じ書体の "標準" 文字と比較して、書体の特定の文字に関連付けられたストロークまたは太さの増加によって区別されます。
メモ すべての書体に対してすべての重みが使用できるわけではありません。 書体で重みが使用できない場合は、最も近い一致する重みが返されます。