[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ITextRange.Paragraphs

Paragraphs Property

Paragraphs

Gets the paragraphs of ITextRange.

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

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