[]
Represents a range of characters in a IRichText object.
public interface ITextRun
Gets the font settings of current rich text run.
IFont Font { get; }
Gets or sets the text of current rich text run.
string Text { get; set; }
Deletes this rich text run from its parent IRichText object.
void Delete()
Inserts a new rich text run after current rich text run.
ITextRun InsertAfter(string text)
text
stringthe text of new inserted run.
Inserts a new rich text run before current rich text run.
ITextRun InsertBefore(string text)
text
stringthe text of new inserted run.