PointF.Add

Add(PointF, Size)

Translates a given PointF by a specified SizeF.

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

Return Value

The translated PointF.

See Also


Add(PointF, SizeF)

Translates a given PointF by a specified SizeF.

public static PointF Add(PointF orig, SizeF sizeF)
ParameterTypeDescription
origPointFThe PointF to translate.
sizeFSizeFThe SizeF that specifies the numbers to add to the coordinates of orig.

Return Value

The translated PointF.

See Also