Word) (Selection.InsertParagraph 方法
會以新的段落取代指定的選取範圍。
語法
expression. InsertParagraph
需要 expression。 代表 Selection 物件的變數。
註解
使用方法之後,在選取範圍會包含新的段落。 如果您不想要取代目前的選取範圍,請使用此方法之前使用 Collapse 方法。 您也可以使用 InsertParagraphBefore 或 InsertParagraphAfter 方法之前或選取範圍後面插入新的段落。
範例
這個範例會摺疊選取範圍,然後在插入點插入段落標記。
With Selection
.Collapse Direction:=wdCollapseStart
.InsertParagraph
.Collapse Direction:=wdCollapseEnd
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。