Document.Paragraphs 屬性 (2007 系統)
更新:2007 年 11 月
取得 Paragraphs 集合,表示文件中的所有段落。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word.v9.0 (在 Microsoft.Office.Tools.Word.v9.0.dll 中)
語法
<BrowsableAttribute(False)> _
Public ReadOnly Property Paragraphs As Paragraphs
Dim instance As Document
Dim value As Paragraphs
value = instance.Paragraphs
[BrowsableAttribute(false)]
public Paragraphs Paragraphs { get; }
屬性值
型別:Microsoft.Office.Interop.Word.Paragraphs
Paragraphs 集合,表示文件中的所有段落。
範例
下列程式碼範例會將文字加入至文件中的第一個段落。
這是示範文件層級自訂的範例。
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.";
}
使用權限
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。