Exemple #1
0
        internal AnnotationCollections Clone(IDocumentEssential owner, Page page)
        {
            AnnotationCollections annots = new AnnotationCollections(owner, _page);

            annots._page = page;

            for (int i = 0; i < _annotations.Count; ++i)
            {
                annots.Add(_annotations[i]);
            }

            return(annots);
        }