CornerRadius.Equals Method
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.
Overloads
Equals(Object) |
Compares this CornerRadius struct to another object for equality. |
Equals(CornerRadius) |
Compares this CornerRadius struct to another CornerRadius structure for equality. |
Remarks
This struct represents the .NET projection of the Windows Runtime (WinRT) CornerRadius
struct. For more information, see CornerRadius in the UWP API reference.
Equals(Object)
Compares this CornerRadius struct to another object for equality.
public:
override bool Equals(System::Object ^ obj);
public override bool Equals (object obj);
override this.Equals : obj -> bool
Public Overrides Function Equals (obj As Object) As Boolean
Parameters
- obj
- Object
The object to compare.
Returns
true
if the two objects are equal; otherwise, false
.
Applies to
Equals(CornerRadius)
Compares this CornerRadius struct to another CornerRadius structure for equality.
public:
bool Equals(Windows::UI::Xaml::CornerRadius cornerRadius);
public bool Equals (Windows.UI.Xaml.CornerRadius cornerRadius);
override this.Equals : Windows.UI.Xaml.CornerRadius -> bool
Public Function Equals (cornerRadius As CornerRadius) As Boolean
Parameters
- cornerRadius
- CornerRadius
An instance of CornerRadius to compare for equality.
Returns
true
if the two instances of CornerRadius are equal; otherwise, false
.