OutputWindow 인터페이스
IDE(통합 개발 환경)에서 출력 창을 나타냅니다.
네임스페이스: EnvDTE
어셈블리: EnvDTE(EnvDTE.dll)
구문
‘선언
<GuidAttribute("EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")> _
Public Interface OutputWindow
[GuidAttribute("EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")]
public interface OutputWindow
[GuidAttribute(L"EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")]
public interface class OutputWindow
[<GuidAttribute("EAB0A63D-C3A8-496E-9ACF-A82CEF6A43B3")>]
type OutputWindow = interface end
public interface OutputWindow
OutputWindow 형식에서는 다음과 같은 멤버를 노출합니다.
속성
이름 | 설명 | |
---|---|---|
ActivePane | OutputWindow 에서 가장 최근의 활성 창을 가져옵니다. | |
DTE | 최상위 확장성 개체를 가져옵니다. | |
OutputWindowPanes | OutputWindow 개체의 OutputWindowPanes 컬렉션을 가져옵니다. | |
Parent | 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