PointOffset Method (Point, Int32, Int32) |
Offsets the X and Y co-ordinates of the point by the specified x and y values
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static Point Offset(
Point point,
int x,
int y
)
Public Shared Function Offset (
point As Point,
x As Integer,
y As Integer
) As Point
static member Offset :
point : Point *
x : int *
y : int -> Point
Parameters
- point
- Type: Eto.DrawingPoint
Point to offset - x
- Type: SystemInt32
Value to add to the X co-ordinate of this point - y
- Type: SystemInt32
Value to add to the Y co-ordinate of this point
Return Value
Type:
PointA new point with the offset X and Y values
See Also