OutputWindowPane インターフェイス
更新 : 2007 年 11 月
[出力] ウィンドウのペインを表します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
<GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")> _
Public Interface OutputWindowPane
'使用
Dim instance As OutputWindowPane
[GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface OutputWindowPane
[GuidAttribute(L"FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface class OutputWindowPane
public interface OutputWindowPane
解説
[出力] ウィンドウにはテキスト出力が表示されます。[出力] ウィンドウには、OutputWindowPane オブジェクトで表される 1 つ以上のペインを表示できます。IDE ツールごとに別個の出力ウィンドウ ペインを使用できます。ペインは、ウィンドウ上部のドロップダウン ボックスで選択します。たとえば、ビルド エラーは ビルド エラー ペインに表示され、外部コマンド ツールは専用の出力ウィンドウ ペインに表示されます。
例
Sub OutputWindowPaneExample()
' 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