Test whether the two IndirectObjects are the same.

 

   

Syntax
 

[C#]
override bool Equals(object obj);

[Visual Basic]
Overrides Function Equals(obj As Object) As Boolean

 

   

Params
 
Name Description
obj The object to test against.
return Whether the objects are equal.

 

   

Notes
 

This method can be used to determine whether the specified object is equal to the current object.

Objects are considered equal if they refer to the same underlying object within the PDF document. So this method determines object equality rather than value equality.

 

   

Example
 

None.