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

            obj.Delete();
        }
コード例 #2
0
ファイル: Document.cs プロジェクト: systembugtj/bookasa
        /**
         * <summary>Drops the object from this document context.</summary>
         */
        public void Decontextualize(
            PdfObjectWrapper obj
            )
        {
            if (obj.File != File)
            {
                return;
            }

            obj.Delete();
        }