Translates the PointD by the specified SizeF.

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Operator + ( _
	pt As PointD, _
	sz As SizeF _
) As PointD
C#
public static PointD operator +(
	PointD pt,
	SizeF sz
)
Visual C++
public:
static PointD operator +(
	PointD pt, 
	SizeF sz
)
JavaScript
JavaScript does not support overloaded operators.

Parameters

pt
Type: EGIS.ShapeFileLib..::..PointD
The PointD to translate.
sz
Type: System.Drawing..::..SizeF
The SizeF that specifies the numbers to add to the x- and y-coordinates of the PointD.

Return Value

The translated PointD.

See Also