Window.ShowRulers property (Visio)
Determines whether rulers are shown in the drawing window. Read/write.
Syntax
expression. ShowRulers
expression A variable that represents a Window object.
Return value
Integer
Remarks
Setting the ShowRulers property is the same as selecting Ruler in the Show/Hide group on the View tab.
Example
This Microsoft Visual Basic for Applications (VBA) macro shows how to use the ShowRulers property to switch display of the rulers on and off.
Public Sub ShowRulers_Example()
'Check whether the active window is a drawing window.
If ActiveWindow.Type = visDrawing Then
'Switch the rulers on or off.
ActiveWindow.ShowRulers = Not ActiveWindow.ShowRulers
Else
'Tell the user why you are not switching the rulers.
MsgBox "Active window is not a drawing window.", _
vbOKOnly, "Show/Hide Rulers"
End If
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.