PointSubtraction Operator (Point, Point) |
Operator to return the difference between two points as a
Size
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Point operator -(
Point point1,
Point point2
)
Public Shared Operator - (
point1 As Point,
point2 As Point
) As Point
static let inline (-)
point1 : Point *
point2 : Point : Point
Parameters
- point1
- Type: Eto.DrawingPoint
Base point value - point2
- Type: Eto.DrawingPoint
Point to subtract
Return Value
Type:
PointA new instance of a Size with the X and Y equal to the difference of the X and Y co-ordinates, respectively
See Also