FontWeight::Compare Method (FontWeight, FontWeight)
.NET Framework (current version)
Compares two instances of FontWeight.
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- left
-
Type:
System.Windows::FontWeight
The first FontWeight object to compare.
- right
-
Type:
System.Windows::FontWeight
The second FontWeight object to compare.
Return Value
Type: System::Int32An Int32 value that indicates the relationship between the two instances of FontWeight. When the return value is less than zero, left is less than right. When this value is zero, it indicates that both operands are equal. When the value is greater than zero, it indicates that left is greater than right.
Lighter font weights are lesser than heavier font weights. For example, a "Light" or "Normal" font weight is lesser than an "UltraBold" font weight.
In the following code example, the Compare method is used to evaluate two FontWeight objects.
.NET Framework
Available since 3.0
Available since 3.0
Show: