Microsoft Word - 切换到阅读布局


0

有没有办法配置Microsoft Word(如果可能的话2003)自动切换到 阅读布局 打开任何文件?也许也选择“多页”选项?

是的,我可以按Alt + R或按下按钮将其打开,但我想自动执行此操作。

编辑:

感谢WireGuy,我找到了答案 - 在normal.dot文件中添加一个新的VBA方法:

Sub AutoOpen()
Options.AllowReadingMode = True
ActiveWindow.View.ReadingLayout = True
End Sub

Answers:


1

如何编写AutoOpen宏,并将其存储在Normal.dot中 看起来像是Options.AllowReadingMode = True

ActiveWindow.View.ReadingLayout = True


根据这个 msdn.microsoft.com/en-us/library/aa212547%28office.11​​%29.aspx 看起来像AllowReadingMode属性只会启用/禁用阅读布局功能,但它不会激活它。
Adrian

属性Options.AllowReadingMode只会勾选/取消选项菜单中相应的框;但是在“打印布局”中仍然打开任何文档
Adrian
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.