Point.Offset

Offset(int, int)

Translates this Point by the specified amount.

public void Offset(int dx, int dy)
ParameterTypeDescription
dxInt32The amount to offset the x-coordinate.
dyInt32The amount to offset the y-coordinate.

See Also


Offset(Point)

Translates this Point by the specified Point.

public void Offset(Point p)
ParameterTypeDescription
pPointThe Point used offset this Point.

See Also