Font.Equality(Font, Font) 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.
Determines whether two specified fonts have the same value.
public:
static bool operator ==(Microsoft::Maui::Graphics::Font left, Microsoft::Maui::Graphics::Font right);
public static bool operator ==(Microsoft.Maui.Graphics.Font left, Microsoft.Maui.Graphics.Font right);
static member ( = ) : Microsoft.Maui.Graphics.Font * Microsoft.Maui.Graphics.Font -> bool
Public Shared Operator == (left As Font, right As Font) As Boolean
Parameters
- left
- Font
The first font to compare.
- right
- Font
The second font to compare.
Returns
true
if the value of left
is the same as the value of right
; otherwise, false
.