PdfSize.Addition Operator

Adds the width and height of one PdfSize structure to the width and height of another PdfSize structure.

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

Syntax

C#
public static PdfSize operator +(
	PdfSize sz1,
	PdfSize sz2
)
VB
Public Shared Operator + ( 
	sz1 As PdfSize,
	sz2 As PdfSize
) As PdfSize

Parameters

sz1
Type: BitMiracle.Docotic.Pdf.PdfSize
The first PdfSize to add.
sz2
Type: BitMiracle.Docotic.Pdf.PdfSize
The second PdfSize to add.

Return Value

Type: PdfSize
A PdfSize structure that is the result of the addition operation.

See Also