PointF.op_Addition

operator +

Translates a PointF by a given Size.

public static PointF operator +(PointF point, Size size)
ParameterTypeDescription
pointPointFThe PointF to translate.
sizeSizeA Size that specifies the pair of numbers to add to the coordinates of point.

Return Value

Returns the translated PointF.

See Also


operator +

Translates the PointF by the specified SizeF.

public static PointF operator +(PointF point, SizeF size)
ParameterTypeDescription
pointPointFThe PointF to translate.
sizeSizeFThe SizeF that specifies the numbers to add to the x- and y-coordinates of the point.

Return Value

The translated PointF.

See Also