Clearing the Debug window

  • Thread starter Thread starter JPS
  • Start date Start date
J

JPS

I am having trouble with this code. It is something syntactically,
but I am not sure what. The first line will not compile.
My ends result should clear the debug window.

OutputWindow outputWin = new DTE2
dte.ToolWindows.OutputWindow;
OutputWindowPane pane = null;
outputWin.Parent.AutoHides = false;
outputWin.Parent.Activate();
pane.Activate();
pane.Clear();
 
Back
Top