Window.DisplayVerticalRuler (Word)

True if a vertical ruler is displayed for the specified window or pane.

A vertical ruler appears only in print layout view, and only if the DisplayRulers property is set to True.


Dim winLoop As Window 
 
For Each winLoop In Windows 
 With winLoop 
 .View.Type = wdPrintView 
 .DisplayRulers = True 
 .DisplayVerticalRuler = True 
 End With 
Next winLoop