[]
Indicates whether the cell string value is a rich text.
bool IsRichText { get; }
ReadOnly Property IsRichText As Boolean
IRange range = worksheet.Range["A1"];
range.RichText.Add("Document ");
range.RichText.Add("Solutions");
bool isRichText = range.IsRichText;