Window.ShowRulers 属性 (Visio)
确定是否在绘图窗口中显示标尺。 读/写。
语法
expression。 ShowRulers
表达 一个代表 Window 对象的变量。
返回值
整数
备注
设置 ShowRulers 属性等同于在“视图”选项卡上的“显示/隐藏”组中选择“标尺”。
示例
以下 Microsoft Visual Basic for Applications (VBA) 宏显示如何使用 ShowRulers 属性在显示标尺和不显示标尺之间切换。
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
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。