Point::Equals Method (Point, Point)
.NET Framework (current version)
Compares two Point structures for equality.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- point1
-
Type:
System.Windows::Point
The first point to compare.
- point2
-
Type:
System.Windows::Point
The second point to compare.
Return Value
Type: System::Booleantrue if point1 and point2 contain the same X and Y values; otherwise, false.
The following example shows how to check if two Point structures are equal using the static Equals method.
private Boolean staticEqualsExample() { Point point1 = new Point(10, 5); Point point2 = new Point(15, 40); // Check if the two points are equal using the static Equals method. // areEqual is false Boolean areEqual = Point.Equals(point1, point2); return areEqual; }
.NET Framework
Available since 3.0
Available since 3.0
Show: