OutputWindowPanes 介面
包含所有在整合式開發環境 (IDE) 中的 [輸出] 視窗窗格。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
<GuidAttribute("B02CF62A-9470-4308-A521-9675FBA395AB")> _
Public Interface OutputWindowPanes _
Inherits IEnumerable
[GuidAttribute("B02CF62A-9470-4308-A521-9675FBA395AB")]
public interface OutputWindowPanes : IEnumerable
[GuidAttribute(L"B02CF62A-9470-4308-A521-9675FBA395AB")]
public interface class OutputWindowPanes : IEnumerable
[<GuidAttribute("B02CF62A-9470-4308-A521-9675FBA395AB")>]
type OutputWindowPanes =
interface
interface IEnumerable
end
public interface OutputWindowPanes extends IEnumerable
OutputWindowPanes 型別會公開下列成員。
屬性
名稱 | 說明 | |
---|---|---|
Count | 取得值,表示集合中的 OutputWindowPane 物件數目。 | |
DTE | 取得最上層的擴充性物件。 | |
Parent | 取得 OutputWindowPanes 集合的直接上層父物件。 |
回頁首
方法
名稱 | 說明 | |
---|---|---|
Add | 建立新的 [輸出] 視窗窗格,並將它加入至集合中。 | |
GetEnumerator() | 傳回會逐一查看集合的列舉程式。 (繼承自 IEnumerable)。 | |
GetEnumerator() | 傳回集合中項目的列舉程式。 | |
Item | 傳回在 OutputWindowPanes 集合中的 OutputWindowPane 物件。 |
回頁首
範例
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.
OWp.OutputString("Some Text")
End Sub