OutputWindowPanes.Add Method
Creates a new Output window pane and adds it to the collection.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Function Add ( _
Name As String _
) As OutputWindowPane
OutputWindowPane Add(
string Name
)
OutputWindowPane^ Add(
[InAttribute] String^ Name
)
abstract Add :
Name:string -> OutputWindowPane
function Add(
Name : String
) : OutputWindowPane
Parameters
Name
Type: System.StringRequired. The caption for the new pane.
Return Value
Type: EnvDTE.OutputWindowPane
An OutputWindowPane object.
Examples
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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.