Is it possible to programmatically clear the Output Window in Visual Studio?

前端 未结 4 1121
执念已碎
执念已碎 2021-01-17 16:14

Do you know a way to add some code that, during debug, programmatically clear the Output Window in Visual Studio?

Or do you know so

4条回答
  •  醉酒成梦
    2021-01-17 16:39

    I have changed unreadable "{ECB7191A-597B-41F5-9843-03A4CF275DDE}" guid code from smirkingman's answer to "Immediate Window" and it worked as well (also removed unnecessary codes for my own):

    Dim dte As EnvDTE80.DTE2 = Marshal.GetActiveObject("VisualStudio.DTE.11.0")
    dte.Windows.Item("Immediate Window").Activate() 'Activate Immediate Window  
    dte.ExecuteCommand("Edit.SelectAll")
    dte.ExecuteCommand("Edit.ClearAll")
    Marshal.ReleaseComObject(dte)
    

提交回复
热议问题