PointF.op_Subtraction

operator -

Translates a PointF by the negative of a given Size.

public static PointF operator -(PointF point, Size size)
ParameterTypeDescription
pointPointFA PointF to translate.
sizeSizeA Size that specifies the numbers to subtract from the x- and y-coordinates of the point.

Return Value

The translated PointF.

See Also


operator -

Translates a PointF by the negative of a specified SizeF.

public static PointF operator -(PointF point, SizeF size)
ParameterTypeDescription
pointPointFThe PointF to translate.
sizeSizeFThe SizeF that specifies the numbers to subtract from the coordinates of point.

Return Value

The translated PointF.

See Also