| IOutputWindowPaneHide Method |
Hides the output window pane.
Namespace: Tvl.VisualStudio.OutputWindow.InterfacesAssembly: Tvl.VisualStudio.OutputWindow.Interfaces (in Tvl.VisualStudio.OutputWindow.Interfaces.dll) Version: 2.0.1.0-dev
Syntax abstract Hide : unit -> unit
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.
IOutputWindowPane pane = OutputWindowService.TryGetPane("Custom");
if (pane != null)
pane.Hide();
See Also