Test whether the two Atoms are the same.

 

   

Syntax
 

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

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

 

   

Params
 
Name Description
test 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.