/** * <summary>Clones the object within this document context.</summary> */ public PdfObjectWrapper Include( PdfObjectWrapper obj ) { if (obj.File == File) { return(obj); } return((PdfObjectWrapper)obj.Clone(this)); }
/** * <summary>Clones the object within this document context.</summary> */ public PdfObjectWrapper Contextualize( PdfObjectWrapper obj ) { if (obj.File == File) { return(obj); } return((PdfObjectWrapper)obj.Clone(this)); }