[]
Base abstract class representing a PDF indirect object.
public abstract class PdfIndirectObjectBase
protected PdfIndirectObjectBase()
Gets or sets the ID of the indirect object.
public PdfObjID ObjID { get; set; }
Gets the IPdfObject that defines the value of this PdfIndirectObjectBase. That should be a direct object.
public abstract IPdfObject Value { get; }
Checks whether the content of this object is same as the
content of the other
object.
public virtual bool IsContentEqual(IPdfObject other)
other
IPdfObjectThe object to compare with this object.
public override string ToString()