/** * <summary>Deletes the object from this document context.</summary> */ public void Exclude( PdfObjectWrapper obj ) { if (obj.File != File) { return; } obj.Delete(); }
/** * <summary>Drops the object from this document context.</summary> */ public void Decontextualize( PdfObjectWrapper obj ) { if (obj.File != File) { return; } obj.Delete(); }