PointAddition Operator (Point, Point) |
Operator to return the addition of two points as a
Point
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 add
Return Value
Type:
PointA new instance of a Point with the X and Y equal to the sum of the two point's X and Y co-ordinates, respectively
See Also