Word) (Selection.InsertParagraphAfter 方法
會在選取範圍之後插入段落標記。
語法
expression. InsertParagraphAfter
需要 expression。 代表 Selection 物件的變數。
註解
使用這個方法之後,選取範圍會擴大以加入新段落。
範例
這個範例會在目前段落之後插入新的段落。
With Selection
.Move Unit:=wdParagraph
.InsertParagraphAfter
.Collapse Direction:=wdCollapseStart
End With
本範例會在使用中文件的結尾插入段落。 Content 屬性會傳回 Range 物件。
ActiveDocument.Content.InsertParagraphAfter
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。