FontWeight.GreaterThanOrEqual(FontWeight, FontWeight) Operator

Definition

Evaluates two instances of FontWeight to determine whether one instance is greater than or equal to the other.

public:
 static bool operator >=(System::Windows::FontWeight left, System::Windows::FontWeight right);
public static bool operator >= (System.Windows.FontWeight left, System.Windows.FontWeight right);
static member ( >= ) : System.Windows.FontWeight * System.Windows.FontWeight -> bool
Public Shared Operator >= (left As FontWeight, right As FontWeight) As Boolean

Parameters

left
FontWeight

The first instance of FontWeight to compare.

right
FontWeight

The second instance of FontWeight to compare.

Returns

true if left is greater than or equal to right; otherwise, false.

Remarks

Lighter font weights are lesser than heavier font weights. For example, a "Light" or "Normal" font weight is lesser than an "UltraBold" font weight.

Applies to