Atom Equals Function. Test whether the two Atoms are the same. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Test whether the two Atoms are the same.

 

   
Syntax  

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

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

 

   

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