PdfSize.Equality Operator

Tests whether two PdfSize structures are equal.

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

Syntax

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

Parameters

sz1
Type: BitMiracle.Docotic.Pdf.PdfSize
The PdfSize structure on the left side of the equality operator.
sz2
Type: BitMiracle.Docotic.Pdf.PdfSize
The PdfSize structure on the right of the equality operator.

Return Value

Type: Boolean
This operator returns true if sz1 and sz2 have equal width and height; otherwise, false.

See Also