[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ITextRange.Runs

Runs Property

Runs

Gets the runs of ITextRange.

This property is only used when Type is Paragraph; otherwise, it throws InvalidOperationException.

Declaration
ITextRange Runs { get; }
ReadOnly Property Runs As ITextRange
Examples
ITextRange body = shape.TextFrame.TextRange;
ITextRange paragraph = body.Paragraphs.Add("Sales Report");
ITextRange runs = paragraph.Runs;
int count = runs.Count;