Opens the ProjectItem object in the specified view. The resulting window should not be visible. To show the window to the user, set its Visible property to True.
Syntax
Function Open (ViewKind As String) As Window
This syntax has these parts:
Part | Description |
ViewKind | Required GUID string specifying the kind of view to open. ProjectItem objects support at least the following: vsext_vk_Code, vsext_vk_Designer, and vsext_vk_Primary. |
Remarks
This method may return an existing window if the ProjectItem object is already open in the specified view.
To change and save items without screen flickering, set the Visible property of the Window to False when it's opened, and then set Visible back to True after the item is saved.