OutputWindow 인터페이스
업데이트: 2007년 11월
IDE(통합 개발 환경)에서 출력 창을 나타냅니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
<GuidAttribute("EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")> _
Public Interface OutputWindow
Dim instance As OutputWindow
[GuidAttribute("EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")]
public interface OutputWindow
[GuidAttribute(L"EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")]
public interface class OutputWindow
public interface OutputWindow
설명
출력 창에는 다양한 IDE 도구의 텍스트 출력이 표시됩니다. 각 도구마다 별도의 출력 창을 사용할 수 있습니다. 출력 창의 맨 위에 있는 드롭다운 상자에서 창을 선택할 수 있습니다. 예를 들어 빌드 오류는 빌드 오류 창에 포함되어 있고 각 외부 명령 도구는 고유의 출력 창에 포함되어 있습니다.
예제
Sub OutputWindowExample()
' 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