CornerRadius.Equality(CornerRadius, CornerRadius) Operator

Definition

Compares the value of two CornerRadius structs for equality.

public:
 static bool operator ==(Windows::UI::Xaml::CornerRadius cr1, Windows::UI::Xaml::CornerRadius cr2);
public static bool operator == (Windows.UI.Xaml.CornerRadius cr1, Windows.UI.Xaml.CornerRadius cr2);
static member ( = ) : Windows.UI.Xaml.CornerRadius * Windows.UI.Xaml.CornerRadius -> bool
Public Shared Operator == (cr1 As CornerRadius, cr2 As CornerRadius) As Boolean

Parameters

cr1
CornerRadius

The first struct to compare.

cr2
CornerRadius

The other struct to compare.

Returns

true if the two instances of CornerRadius are equal; otherwise, false.

Remarks

This struct represents the .NET projection of the Windows Runtime (WinRT) CornerRadius struct. For more information, see CornerRadius in the UWP API reference.

Applies to