/** * @return whether a run of text will be formatted as a superscript text. Default is false. */ public TextCap GetTextCap() { CT_TextCharacterProperties rPr = GetRPr(); if (rPr.IsSetCap()) { return(EnumConverter.ValueOf <TextCap, ST_TextCapsType>(rPr.cap)); } return(TextCap.NONE); }