Point.Equality(Point, Point) 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.
Compares two Point structs for equality.
public:
static bool operator ==(Windows::Foundation::Point point1, Windows::Foundation::Point point2);
public static bool operator == (Windows.Foundation.Point point1, Windows.Foundation.Point point2);
static member ( = ) : Windows.Foundation.Point * Windows.Foundation.Point -> bool
Public Shared Operator == (point1 As Point, point2 As Point) As Boolean
Parameters
Returns
true
if both the X and Y values of point1
and point2
are equal; otherwise, false
.
Remarks
This struct represents the .NET projection of the Windows Runtime (WinRT) Point
struct. For more information, see Point in the UWP API reference.
For more information and examples of this member, see Point.Equality in the .NET Framework API reference. (Examples show WPF usage and might not translate directly to UWP XAML.)