Point::Equality Operator (Point, Point)

 

Compares two Point structures for equality.

Namespace:   System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)

public:
static bool operator ==(
	Point point1,
	Point point2
)

Parameters

point1
Type: System.Windows::Point

The first Point structure to compare.

point2
Type: System.Windows::Point

The second Point structure to compare.

Return Value

Type: System::Boolean

true if both the X and Y coordinates of point1 and point2 are equal; otherwise, false.

A point's coordinates are described using Double values. Because the value of Double can lose precision when arithmetic operations are performed on them, a comparison between two Point values that are logically equal might fail.

The following example shows how to check if two Point structures are equal using the overloaded (==) operator.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: