有没有办法配置 Microsoft Word(如果可能的话是 2003)以自动切换到阅读布局打开任何文档时?也许也可以选择“多页”选项?
是的,我可以按 Alt+R 或按下按钮来打开它,但我想自动完成它。
編輯:
感谢 WireGuy,我找到了答案 - 在 normal.dot 文件中添加一个新的 VBA 方法:
Sub AutoOpen()
Options.AllowReadingMode = True
ActiveWindow.View.ReadingLayout = True
End Sub
答案1
如何编写 AutoOpen 宏并将其存储在 Normal.dot 中
看起来它将是 Options.AllowReadingMode = True
ActiveWindow.View.ReadingLayout = True