OutputWindow.OutputWindowPanes 属性
获取 OutputWindow 对象的 OutputWindowPanes 集合。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property OutputWindowPanes As OutputWindowPanes
OutputWindowPanes OutputWindowPanes { get; }
property OutputWindowPanes^ OutputWindowPanes {
OutputWindowPanes^ get ();
}
abstract OutputWindowPanes : OutputWindowPanes
function get OutputWindowPanes () : OutputWindowPanes
属性值
类型:EnvDTE.OutputWindowPanes
一个 OutputWindowPanes 集合。
示例
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
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。