Word) (Range.InsertParagraph 方法
會以新的段落取代指定的範圍。
語法
expression. InsertParagraph
需要 expression。 代表 Range 物件的變數。
註解
在使用此方法之後,範圍就是新的段落。
如果您不想取代範圍,請使用此方法之前使用 Collapse 方法。 InsertParagraphAfter 方法會插入新的段落後面的 Range 物件。
範例
本範例會在現用文件的開頭插入新的段落。
Set myRange = ActiveDocument.Range(0, 0)
With myRange
.InsertParagraph
.InsertBefore "Dear Sirs,"
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。