Condividi tramite


Proprietà OutputWindow.OutputWindowPanes

Ottiene la raccolta OutputWindowPanes per l'oggetto OutputWindow.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
ReadOnly Property OutputWindowPanes As OutputWindowPanes
OutputWindowPanes OutputWindowPanes { get; }
property OutputWindowPanes^ OutputWindowPanes {
    OutputWindowPanes^ get ();
}
abstract OutputWindowPanes : OutputWindowPanes with get
function get OutputWindowPanes () : OutputWindowPanes

Valore proprietà

Tipo: EnvDTE.OutputWindowPanes
Raccolta di OutputWindowPanes.

Esempi

Sub OutputWindowPanesExample()
   ' 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 and to the Task List.
   OWp.OutputTaskItemString("Some task", vsTaskPriority.vsTaskPriorityHigh, vsTaskCategories.vsTaskCategoryMisc, vsTaskIcon.vsTaskIconComment, "C:\temp", 100, "Some description")
   ' You can also use the 'True' flag on the end of 
   ' OutputTaskItemString rather than using the next line 
   ' (ForceItemsToTaskList).
   OWp.ForceItemsToTaskList()
End Sub

Sicurezza di .NET Framework

Vedere anche

Riferimenti

OutputWindow Interfaccia

Spazio dei nomi EnvDTE