Typeface.Weight Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the relative weight of the typeface.
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
Property Value
A FontWeight value that represents the relative weight of the typeface.
Examples
// 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
Remarks
Weight differences are generally differentiated by an increased stroke or thickness associated with a given character in a typeface, as compared to a "normal" character from that same typeface.
Note Not all weights are available for all typefaces. When a weight is not available for a typeface, the closest matching weight is returned.