OutputWindowPanes.Add, méthode
Crée un volet de fenêtre Sortie et l'ajoute à la collection.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
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
Paramètres
Name
Type : StringObligatoire. Légende du nouveau volet.
Valeur de retour
Type : EnvDTE.OutputWindowPane
Objet OutputWindowPane.
Exemples
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
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.