PasteAdjustParagraphSpacing 属性

       

如果该属性值为 True,则剪切和粘贴选定内容时,Microsoft Word 自动调整段落间距。Boolean 类型,可读写。

expression.PasteAdjustParagraphSpacing

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

如果禁用该选项,本示例设置 Microsoft Word 在剪切和粘贴选定内容时自动调整段落间距。

Sub AdjustParaSpace()
    With Options
        If .PasteAdjustParagraphSpacing = False Then
            .PasteAdjustParagraphSpacing = True
        End If
    End With
End Sub