Window.ShowGrid 属性 (Visio)

确定是否在窗口中显示网格。 读/写。

语法

expressionShowGrid

表达 一个代表 Window 对象的变量。

返回值

整数

备注

设置 ShowGrid 属性等效于在“视图”选项卡上的“显示/隐藏”组中选择“网格”

示例

以下 Microsoft Visual Basic for Applications (VBA) 宏显示如何使用 ShowGrid 属性隐藏网格。 运行此宏后,要恢复网格,请将 ShowGrid 属性设置为 True

 
Public Sub ShowGrid_Example() 
 
 'Check whether active window is a drawing window. 
 If ActiveWindow.Type = visDrawing Then 
 
 'Hide the grid. 
 ActiveWindow.ShowGrid = False 
 
 Else 
 
 'Tell the user why you are not hiding the grid. 
 MsgBox "Active window is not a drawing window.", vbOKOnly, "Show Grid" 
 
 End If 
 
End Sub

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。