IVsDataExplorerNode.OpenSpecificDocumentView Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OpenSpecificDocumentView(Guid) |
Opens the current node as a document window frame in the Visual Studio environment. |
OpenSpecificDocumentView(Guid, Object) |
Opens the current node as a document window frame in the Visual Studio environment. |
OpenSpecificDocumentView(Guid, Object, Boolean) |
Opens the current node as a document window frame in the Visual Studio environment. |
OpenSpecificDocumentView(Guid)
Opens the current node as a document window frame in the Visual Studio environment.
public:
Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ OpenSpecificDocumentView(Guid logicalView);
public Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame OpenSpecificDocumentView (Guid logicalView);
abstract member OpenSpecificDocumentView : Guid -> Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame
Public Function OpenSpecificDocumentView (logicalView As Guid) As IVsWindowFrame
Parameters
- logicalView
- Guid
A GUID value for the logical view obtained from the LogicalView enumeration.
Returns
An IVsWindowFrame object representing the opened document window.
Applies to
OpenSpecificDocumentView(Guid, Object)
Opens the current node as a document window frame in the Visual Studio environment.
public:
Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ OpenSpecificDocumentView(Guid logicalView, System::Object ^ existingDocumentData);
public Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame OpenSpecificDocumentView (Guid logicalView, object existingDocumentData);
abstract member OpenSpecificDocumentView : Guid * obj -> Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame
Public Function OpenSpecificDocumentView (logicalView As Guid, existingDocumentData As Object) As IVsWindowFrame
Parameters
- logicalView
- Guid
A GUID value for the logical view obtained from the LogicalView enumeration.
- existingDocumentData
- Object
Object containing any existing data in the document.
Returns
An IVsWindowFrame object representing the opened document window.
Applies to
OpenSpecificDocumentView(Guid, Object, Boolean)
Opens the current node as a document window frame in the Visual Studio environment.
public:
Microsoft::VisualStudio::Shell::Interop::IVsWindowFrame ^ OpenSpecificDocumentView(Guid logicalView, System::Object ^ existingDocumentData, bool doNotShowWindow);
public Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame OpenSpecificDocumentView (Guid logicalView, object existingDocumentData, bool doNotShowWindow);
abstract member OpenSpecificDocumentView : Guid * obj * bool -> Microsoft.VisualStudio.Shell.Interop.IVsWindowFrame
Public Function OpenSpecificDocumentView (logicalView As Guid, existingDocumentData As Object, doNotShowWindow As Boolean) As IVsWindowFrame
Parameters
- logicalView
- Guid
A GUID value for the logical view obtained from the LogicalView enumeration.
- existingDocumentData
- Object
Object containing any existing data in the document.
- doNotShowWindow
- Boolean
A Boolean value indicating whether to hide the open window (true) or not (false).
Returns
An IVsWindowFrame object representing the opened document window.