Shape.OpenSheetWindow 方法 (Visio)

Shape 对象打开 ShapeSheet 窗口。

语法

expressionOpenSheetWindow

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

返回值

Window

备注

OpenSheetWindow 方法为形状打开新的 ShapeSheet 窗口,即使该信息已经显示在另一个窗口中也是如此。

示例

此 Microsoft Visual Basic for Applications (VBA) 宏说明如何使用 OpenSheetWindow 方法打开 Shape 对象的 ShapeSheet 窗口。

 
Public Sub OpenSheetWindow_Example() 
 
 Dim vsoShape As Visio.Shape 
 Dim vsoSheetWindow As Visio.Window 
 
 'Draw a shape. 
 Set vsoShape = ActivePage.DrawRectangle(1, 1, 2, 3) 
 
 'Open the ShapeSheet window of vsoShape. 
 Set vsoSheetWindow = vsoShape.OpenSheetWindow 
 
End Sub

支持和反馈

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