Word) (Paragraph 物件
代表選取範圍、 範圍或文件中的單一段落。 Paragraph 物件是 段落 的成員 集合。 Paragraphs 集合包含選取範圍、 範圍或文件中的所有段落。
使用 段落 (Index),其中 Index 是索引編號,可以傳回單一的 Paragraph 物件。 下例的右邊對齊使用中文件第一個段落。
ActiveDocument.Paragraphs(1).Alignment = wdAlignParagraphRight
使用 新增 、 InsertParagraph 、 InsertParagraphAfter 或 InsertParagraphBefore 若要將新的空白段落加入至文件的方法。 下面範例會加入一個段落標記之前的第一個段落選取範圍中。
Selection.Paragraphs.Add Range:=Selection.Paragraphs(1).Range
下列範例也會在選取範圍的第一個段落之前加上段落標記。
Selection.Paragraphs(1).Range.InsertParagraphBefore
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。