Options.PasteAdjustParagraphSpacing 属性 (Word)
如此 如果 Microsoft Word 将自动调整在剪切和粘贴选定内容的段落的间距。 读/写 Boolean。
语法
expression。 PasteAdjustParagraphSpacing
表达 一个代表“Options”对象的变量。
示例
如果禁用该选项,本示例设置 Word 在剪切和粘贴选定内容时自动调整段落间距。
Sub AdjustParaSpace()
With Options
If .PasteAdjustParagraphSpacing = False Then
.PasteAdjustParagraphSpacing = True
End If
End With
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。