OutputWindowPanes.Add-Methode
Erstellt einen neuen Ausgabefensterbereich und fügt ihn der Auflistung hinzu.
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
Parameter
Name
Typ: StringErforderlich. Die Beschriftung für den neuen Bereich.
Rückgabewert
Typ: EnvDTE.OutputWindowPane
Ein OutputWindowPane-Objekt.
Beispiele
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-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.