0
我想設置word文檔頁腳的行間距爲12點。用VBA設置頁腳的行間距
我用這個代碼
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
Selection.ParagraphFormat.LineSpacing = 12
但doensn't工作。我正在使用單詞2013.
我想設置word文檔頁腳的行間距爲12點。用VBA設置頁腳的行間距
我用這個代碼
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
Selection.ParagraphFormat.LineSpacing = 12
但doensn't工作。我正在使用單詞2013.
我能夠通過我自己找到解決方案。
這將完成這項工作。
With Selection.ParagraphFormat
.LineSpacingRule = wdLineSpaceExactly
.LineSpacing = 12
End With
如果您選擇段落並再次運行代碼,它會起作用嗎? – Vityata