OutputWindowPanes::Add Method (String^)
Visual Studio 2015
Creates a new Output window pane and adds it to the collection.
Assembly: EnvDTE (in EnvDTE.dll)
Parameters
- Name
-
Type:
System::String^
Required. The caption for the new pane.
Sub AddExample() ' Create a tool window handle for the Output window. Dim win As Window = DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput) ' Create handles to the Output window and its panes. Dim OW As OutputWindow = win.Object Dim OWp As OutputWindowPane ' Add a new pane to the Output window. OWp = OW.OutputWindowPanes.Add("A New Pane") ' Add a line of text to the new pane. OWp.OutputString("Some Text") End Sub
Show: