PointF.Add

Add(PointF, Size)

Translates a given PointF by the specified Size.

public static PointF Add(PointF point, Size size)
ParameterTypeDescription
pointPointFThe PointF to translate.
sizeSizeThe Size that specifies the numbers to add to the coordinates of point.

Return Value

The translated PointF.

See Also


Add(PointF, SizeF)

Translates a given PointF by a specified SizeF.

public static PointF Add(PointF point, SizeF size)
ParameterTypeDescription
pointPointFThe PointF to translate.
sizeSizeFThe SizeF that specifies the numbers to add to the coordinates of point.

Return Value

The translated PointF.

See Also