Click or drag to resize

PointEquality Operator

Determines equality between two points

Namespace:  Eto.Drawing
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public static bool operator ==(
	Point point1,
	Point point2
)

Parameters

point1
Type: Eto.DrawingPoint
First point to compare
point2
Type: Eto.DrawingPoint
Second point to compare

Return Value

Type: Boolean
True if both points are equal, false if not
Remarks
Equality is when both the X and Y values of both points are equal
See Also