使用 VBA 设置 word 中页脚的行距
Set line spacing of footer in word using VBA
我想把word文档的页脚行间距设置为12磅
我使用了这个代码
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
Selection.ParagraphFormat.LineSpacing = 12
但它不起作用。我使用的是 2013 字。
我自己找到了解决办法。
这样就可以了。
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceExactly
.LineSpacing = 12
End With
我想把word文档的页脚行间距设置为12磅
我使用了这个代码
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
Selection.ParagraphFormat.LineSpacing = 12
但它不起作用。我使用的是 2013 字。
我自己找到了解决办法。
这样就可以了。
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceExactly
.LineSpacing = 12
End With