DocumentBase.Paragraphs 属性

获取一个 Paragraphs 集合,该集合表示文档中的所有段落。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public ReadOnly Property Paragraphs As Paragraphs
public Paragraphs Paragraphs { get; }

属性值

类型:Microsoft.Office.Interop.Word.Paragraphs
一个 Paragraphs 集合,表示文档中的所有段落。

示例

下面的代码示例向文档中的第一个段落添加文本。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

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 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间