Checks if this Obj is equal to the specified Obj.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public bool IsEqual(
Obj obj
)
Public Function IsEqual (
obj As Obj
) As Boolean
public:
virtual bool IsEqual(
[InAttribute] Obj^ obj
) sealed
Parameters
- obj
- Type: pdftron.SDFObj
The Obj to compare this to.
Return Value
Type:
Boolean
True if two Obj pointers point to the same object.
This method does not compare object content so you should not use this method to compare two
(e.g. Number) objects.
Remarks
This method can be invoked on any Obj.
See Also