Word) (Window.DisplayVerticalRuler 屬性
True 是表示 如果指定的視窗或窗格會顯示垂直尺規。 可讀寫的 Boolean。
語法
expression。 DisplayVerticalRuler
表達 代表 Window 物件的變數。
註解
垂直尺規只會出現在整頁模式並只有 DisplayRulers 屬性設為 True 。
範例
本範例會切換為整頁模式的 Windows 集合中每個視窗並顯示水平及垂直尺規。
Dim winLoop As Window
For Each winLoop In Windows
With winLoop
.View.Type = wdPrintView
.DisplayRulers = True
.DisplayVerticalRuler = True
End With
Next winLoop
此範例會隱藏使用中視窗的水平及垂直尺規。
With ActiveDocument.ActiveWindow
.DisplayVerticalRuler = False
.DisplayRulers = False
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。