[]
Represents the rich text class for a cell.
public interface IRichText : IEnumerable<ITextRun>, IEnumerable
Gets the count of ITextRun objects.
int Count { get; }
Gets the plain text that is composed of all ITextRun objects.
string PlainText { get; }
Adds a text run into current rich text object.
ITextRun Add(string text)
text
stringthe string text of the text run to be added.