共用方式為


OutputWindowPanes.Add 方法

建立新的 [輸出] 視窗窗格,並將它加入至集合中。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
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

參數

傳回值

型別:EnvDTE.OutputWindowPane
OutputWindowPane 物件。

範例

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 安全性

請參閱

參考

OutputWindowPanes 介面

EnvDTE 命名空間