OutputWindowPane インターフェイス
[出力] ウィンドウのペインを表します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
<GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")> _
Public Interface OutputWindowPane
[GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface OutputWindowPane
[GuidAttribute(L"FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")]
public interface class OutputWindowPane
[<GuidAttribute("FFC9DFC4-61CA-4B0C-83C2-0703A24F5C16")>]
type OutputWindowPane = interface end
public interface OutputWindowPane
OutputWindowPane 型で公開されるメンバーは以下のとおりです。
プロパティ
名前 | 説明 | |
---|---|---|
Collection | このプロパティをサポートしている OutputWindowPane オブジェクトを含んでいるコレクションを取得します。 | |
DTE | トップ レベルの機能拡張オブジェクトを取得します。 | |
Guid | OutputWindowPane オブジェクトの GUID を取得します。 | |
Name | OutputWindowPane オブジェクトの名前を取得します。 | |
TextDocument | OutputWindowPane の TextDocument オブジェクトを取得します。 |
このページのトップへ
メソッド
名前 | 説明 | |
---|---|---|
Activate | 現在の項目にフォーカスを移動します。 | |
Clear | OutputWindowPane のすべてのテキストを消去します。 | |
ForceItemsToTaskList | タスク一覧にまだ追加されていない、すべてのタスク アイテムを送ります。 | |
OutputString | テキスト文字列を OutputWindowPane ウィンドウに送ります。 | |
OutputTaskItemString | 出力 ウィンドウに文字列を表示し、対応するアイテムをタスク一覧に追加します。 |
このページのトップへ
解説
[出力] ウィンドウにはテキスト出力が表示されます。[出力] ウィンドウには、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