Typeface.Weight プロパティ

定義

タイプフェイスの相対的な太さを取得します。

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

タイプフェイスの相対的な太さを表す 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

注釈

通常、ウェイトの違いは、同じ書体の "標準" 文字と比較して、書体の特定の文字に関連付けられたストロークまたは太さの増加によって区別されます。

メモ すべての書体に対してすべての重みが使用できるわけではありません。 書体で重みが使用できない場合は、最も近い一致する重みが返されます。

適用対象