Determines equality between two points
            
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static bool operator ==(
	PointF point1,
	PointF point2
)
Public Shared Operator = ( 
	point1 As PointF,
	point2 As PointF
) As Boolean
static let inline (=)
        point1 : PointF * 
        point2 : PointF  : boolParameters
- point1
- Type: Eto.DrawingPointF
 First point to compare
- point2
- Type: Eto.DrawingPointF
 Second point to compare
Return Value
Type: 
BooleanTrue if both points are equal, false if not
 Remarks
Remarks
            Equality is when both the X and Y values of both points are equal
            
 See Also
See Also