Gets a new PointF containing the sum of coordinates of a supplied point and size.
Syntax

[C#]

static PointF Add(PointF pt, Size sz);
static PointF Add(PointF pt, SizeF sz);

[Visual Basic]

Shared Function Add(pt As PointF, sz As Size) As PointF
Shared Function Add(pt As PointF, sz As SizeF) As PointF
Params
Name Description
pt The point.
sz The size.
return The new resultant point.
Notes

None.

Example

None.