PdfRectangle.Inequality Operator

Tests whether two PdfRectangle structures differ in location or 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 inequality operator.
right
Type: BitMiracle.Docotic.Pdf.PdfRectangle
The PdfRectangle structure that is to the right of the inequality operator.

Return Value

Type: Boolean
This operator returns true if any of the PdfRectangle.X, PdfRectangle.Y, PdfRectangle.Width, or PdfRectangle.Height properties of the two PdfRectangle structures are unequal; otherwise false.

See Also