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