Click or drag to resize
IOutputWindowPaneActivate Method
Shows and activates 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 Activate()
Remarks
Calling this method on an output window pane will not force the Output window itself to become visible if it is not visible already. If this output window pane was originally created as a hidden pane, calling this method makes it the selected and visible pane inside the Output window.
Examples
The following example shows how to show the standard Build window pane.
C#
IOutputWindowPane pane = OutputWindowService.TryGetPane(PredefinedOutputWindowPanes.Build);
if (pane != null)
  pane.Activate();
See Also