MasterShortcut.OpenIconWindow 方法 (Visio)
打开一个显示主控形状图标的图标窗口。
expression。 OpenIconWindow
表达 一个代表 MasterShortcut 对象的变量。
Window
如果主控形状的图标已经显示在图标窗口中,则 OpenIconWindow 方法会激活该窗口而不是打开另一个窗口。
以下 Microsoft Visual Basic for Applications (VBA) 宏显示如何使用 OpenIconWindow 方法打开一个图标编辑窗口。
Public Sub OpenIconWindow_Example()
Dim vsoMaster As Visio.Master
Dim vsoIconWindow As Visio.Window
'Add a master to the document stencil and open its icon editing window.
Set vsoMaster = ThisDocument.Masters.Add
Set vsoIconWindow = vsoMaster.OpenIconWindow
End Sub
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。