PointFInequality Operator |
Determines the inequality between two points
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public 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 : bool
Parameters
- point1
- Type: Eto.DrawingPointF
First point to compare - point2
- Type: Eto.DrawingPointF
Second point to compare
Return Value
Type:
BooleanTrue if the two points are not equal, false if not
Remarks
Inequality is when either the X and Y values of both points are different
See Also