/**
         * <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));
        }
Beispiel #2
0
        /**
         * <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));
        }