Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Word文書のフッターの行間をちょうど12ptに設定したいです。
このコードを使用しました
ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter Selection.ParagraphFormat.LineSpacing = 12
しかし、うまくいきません。ワード2013を使用しています。
私は自分で解決策を見つけることができました。
これは仕事をします。
With Selection.ParagraphFormat .LineSpacingRule = wdLineSpaceExactly .LineSpacing = 12 End With