语法
表达式.VerticalPercentScrolled
表达式 必选。一个代表 Window 对象的变量。
示例
以下示例显示活动窗口垂直滚动的百分比。
MsgBox(ActiveDocument.ActiveWindow.VerticalPercentScrolled + "%")
以下示例将活动窗口垂直滚动 10%。
let aWindow = ActiveDocument.ActiveWindow aWindow.VerticalPercentScrolled = aWindow.VerticalPercentScrolled + 10