Word (的 Range.InsertParagraphAfter 方法)
會在範圍之後插入段落標記。
語法
expression. InsertParagraphAfter
需要 expression。 代表 Range 物件的變數。
註解
套用這個方法之後,範圍會擴大以包含新段落。
範例
這個範例會在使用中文件的開頭插入文字,當做新的段落。
Set myRange = ActiveDocument.Range(0, 0)
With myRange
.InsertBefore "Title"
.ParagraphFormat.Alignment = wdAlignParagraphCenter
.InsertParagraphAfter
End With
本範例會在使用中文件的結尾插入段落。 Content 屬性會傳回 Range 物件。
ActiveDocument.Content.InsertParagraphAfter
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。