FontWeight.GreaterThanOrEqual(FontWeight, FontWeight) Operator
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.
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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET