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 개체로 표현되는 창을 하나 이상 포함할 수 있습니다. 각 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