[]
Gets the runs of ITextRange.
This property is only used when Type is Paragraph; otherwise, it throws InvalidOperationException.
ITextRange Runs { get; }
ReadOnly Property Runs As ITextRange
ITextRange body = shape.TextFrame.TextRange;
ITextRange paragraph = body.Paragraphs.Add("Sales Report");
ITextRange runs = paragraph.Runs;
int count = runs.Count;