PdfRectangle.Equality Operator

Tests whether two PdfRectangle structures have equal location and size.

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

Syntax

C#
public static bool operator ==(
	PdfRectangle left,
	PdfRectangle right
)
VB
Public Shared Operator = ( 
	left As PdfRectangle,
	right As PdfRectangle
) As Boolean

Parameters

left
Type: BitMiracle.Docotic.Pdf.PdfRectangle
The PdfRectangle structure that is to the left of the equality operator.
right
Type: BitMiracle.Docotic.Pdf.PdfRectangle
The PdfRectangle structure that is to the right of the equality operator.

Return Value

Type: Boolean
This operator returns true if the two specified PdfRectangle structures have equal PdfRectangle.X, PdfRectangle.Y, PdfRectangle.Width, and PdfRectangle.Height properties.

See Also