[]
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 GrapeCity.Documents.Pdf.Spec.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
GrapeCity.Documents.Pdf.Spec.IPdfObjectThe object to compare with this object.
true if the two objects have the same content, false otherwise.
public override string ToString()