DocumentBase.Paragraphs Property
Gets a Paragraphs collection that represents all the paragraphs in the document.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Syntax
'Declaration
Public ReadOnly Property Paragraphs As Paragraphs
Get
public Paragraphs Paragraphs { get; }
Property Value
Type: Microsoft.Office.Interop.Word.Paragraphs
A Paragraphs collection that represents all the paragraphs in the document.
Examples
The following code example adds text to the first paragraph in the document. To use this example, run it from the ThisDocument class in a document-level project.
Private Sub DocumentParagraphs()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.Text = "This is sample paragraph text."
End Sub
private void DocumentParagraphs()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Text = "This is sample paragraph text.";
}
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.