IVsOutputWindow.GetPane Method (Guid, IVsOutputWindowPane)
Visual Studio 2015
Returns an Output window pane, given its identifying GUID.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- rguidPane
-
Type:
System.Guid
[in] Identifies the Output window pane.
- ppPane
-
Type:
Microsoft.VisualStudio.Shell.Interop.IVsOutputWindowPane
[out] Pointer to the IVsOutputWindowPane of the requested Output window pane. Returns null if the requested pane does not exist.
Return Value
Type: System.Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsOutputWindow::GetPane(
[in] REFGUID rguidPane,
[out] IVsOutputWindowPane **ppPane
);
The IVsOutputWindowPane interface allows a VSPackage to manipulate a particular output window pane.
Show: