/** * @return whether this run of text is formatted as bold text */ public bool IsBold() { CT_TextCharacterProperties rPr = GetRPr(); if (rPr.IsSetB()) { return(rPr.b); } return(false); }