PdfSize.Equals Method (PdfSize)

Tests to see whether the specified size has the same dimensions as this PdfSize.

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

Syntax

C#
public bool Equals(
	PdfSize other
)
VB
Public Function Equals ( 
	other As PdfSize
) As Boolean

Parameters

other
Type: BitMiracle.Docotic.Pdf.PdfSize
The size to test.

Return Value

Type: Boolean
This method returns true if other has the same width and height as this PdfSize; otherwise, false.

Implements

IEquatable<T>.Equals(T)

See Also