Selection.InsertParagraph 方法 (Word)

用新段落替换指定的所选内容。

语法

expression. InsertParagraph

expression:必需。 表示 Selection 对象的变量。

备注

使用方法后,所选内容包含新段落。 如果您不希望替换当前所选内容,则使用此方法之前使用 Collapse 方法。 您可以使用 InsertParagraphBeforeInsertParagraphAfter 方法来之前或所选内容之后插入一个新段落。

示例

以下示例折叠所选内容,然后在插入点插入段落标记。

With Selection 
 .Collapse Direction:=wdCollapseStart 
 .InsertParagraph 
 .Collapse Direction:=wdCollapseEnd 
End With

另请参阅

Selection 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。