Click or drag to resize
IOutputWindowPaneHide Method
Hides the output window pane.

Namespace: Tvl.VisualStudio.OutputWindow.Interfaces
Assembly: Tvl.VisualStudio.OutputWindow.Interfaces (in Tvl.VisualStudio.OutputWindow.Interfaces.dll) Version: 2.0.1.0-dev
Syntax
void Hide()
Remarks
This method makes the output window pane inaccessible.
Examples
The following example shows how use this method to hide a window pane named Custom.
C#
IOutputWindowPane pane = OutputWindowService.TryGetPane("Custom");
if (pane != null)
  pane.Hide();
See Also