Beispiel #1
0
        /**
         * @return whether this run of text is formatted as italic text
         */
        public bool IsItalic()
        {
            CT_TextCharacterProperties rPr = GetRPr();

            if (rPr.IsSetI())
            {
                return(rPr.i);
            }
            return(false);
        }