示例#1
0
        /**
         * If this Hyperlink is an external reference hyperlink,
         *  return the object for it.
         */
        public XWPFHyperlink GetHyperlink(XWPFDocument document)
        {
            String id = GetHyperlinkId();

            if (id == null)
            {
                return(null);
            }

            return(document.GetHyperlinkByID(id));
        }