Shape.OpenSheetWindow method (Visio)

Opens a ShapeSheet window for a Shape object.

Syntax

expression. OpenSheetWindow

expression A variable that represents a Shape object.

Return value

Window

Remarks

The OpenSheetWindow method opens a new ShapeSheet window for the shape even if the information is already displayed in another window.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the OpenSheetWindow method to open the ShapeSheet window of a Shape object.

 
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

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.