Example #1
0
        /**
         * @return whether a run of text will be formatted as a superscript text. Default is false.
         */
        public bool IsSubscript()
        {
            CT_TextCharacterProperties rPr = GetRPr();

            if (rPr.IsSetBaseline())
            {
                return(rPr.baseline < 0);
            }
            return(false);
        }