[]
Gets the rich text object associate with the top-left cell of this range.
IRichText RichText { get; }
ReadOnly Property RichText As IRichText
IRichText richText = worksheet.Range["A1"].RichText;
richText.Add("Document ").Font.Bold = true;
richText.Add("Solutions");
string plainText = richText.PlainText;