PdfPoint.Equals Method (PdfPoint)

Tests whether this and the other points have same coordinates.

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

Syntax

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

Parameters

other
Type: BitMiracle.Docotic.Pdf.PdfPoint
The point to test.

Return Value

Type: Boolean
This method returns true if the other point is equal to this PdfPoint; otherwise, false.

Implements

IEquatable<T>.Equals(T)

See Also