Font.Inequality(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 different values.
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 op_Inequality : 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 different from the value of right
; otherwise, false
.