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

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

            obj.Delete();
        }