PdfPoint.Addition Operator

Translates a PdfPoint by a given PdfSize.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public static PdfPoint operator +(
	PdfPoint pt,
	PdfSize sz
)
VB
Public Shared Operator + ( 
	pt As PdfPoint,
	sz As PdfSize
) As PdfPoint

Parameters

pt
Type: BitMiracle.Docotic.Pdf.PdfPoint
The PdfPoint to translate.
sz
Type: BitMiracle.Docotic.Pdf.PdfSize
A PdfSize that specifies the pair of numbers to add to the coordinates of pt.

Return Value

Type: PdfPoint
The translated PdfPoint.

See Also