Share via


OutputWindow.ActivePane 속성

OutputWindow에서 가장 최근의 활성 창을 가져옵니다.

네임스페이스:  EnvDTE
어셈블리:  EnvDTE(EnvDTE.dll)

구문

‘선언
ReadOnly Property ActivePane As OutputWindowPane
OutputWindowPane ActivePane { get; }
property OutputWindowPane^ ActivePane {
    OutputWindowPane^ get ();
}
abstract ActivePane : OutputWindowPane with get
function get ActivePane () : OutputWindowPane

속성 값

형식: EnvDTE.OutputWindowPane
OutputWindowPane 개체

예제

Sub ActivePaneExample(ByVal dte As DTE2)

    ' Retrieve and show the Output window.
    Dim outWin As OutputWindow = dte.ToolWindows.OutputWindow
    outWin.Parent.AutoHides = False
    outWin.Parent.Activate()

    ' Find the "Pane1" Output window pane; if it does not exist, 
    ' create it.
    Dim pane1 As OutputWindowPane
    Try
        pane1 = outWin.OutputWindowPanes.Item("Pane1")
    Catch
        pane1 = outWin.OutputWindowPanes.Add("Pane1")
    End Try

    ' Find the "Pane2" Output window pane; if it does not exist, 
    ' create it.
    Dim pane2 As OutputWindowPane
    Try
        pane2 = outWin.OutputWindowPanes.Item("Pane2")
    Catch
        pane2 = outWin.OutputWindowPanes.Add("Pane2")
    End Try

    MsgBox("The active Output window pane is " & _
        outWin.ActivePane.Name)

    If MsgBox("Activate Pane1?", MsgBoxStyle.YesNo) = _
        MsgBoxResult.Yes Then
        pane1.Activate()
    End If

    MsgBox("The active Output window pane is " & _
        outWin.ActivePane.Name)

End Sub
public void ActivePaneExample(DTE2 dte)
{
    // Retrieve and show the Output window.
    OutputWindow outWin = dte.ToolWindows.OutputWindow;
    outWin.Parent.AutoHides = false;
    outWin.Parent.Activate();

    // Find the "Pane1" Output window pane; if it does not exist, 
    // create it.
    OutputWindowPane pane1 = null;
    try
    {
        pane1 = outWin.OutputWindowPanes.Item("Pane1");
    }
    catch
    {
        pane1 = outWin.OutputWindowPanes.Add("Pane1");
    }

    // Find the "Pane2" Output window pane; if it does not exist, 
    // create it.
    OutputWindowPane pane2;
    try
    {
        pane2 = outWin.OutputWindowPanes.Item("Pane2");
    }
    catch
    {
        pane2 = outWin.OutputWindowPanes.Add("Pane2");
    }

    MessageBox.Show("The active Output window pane is " + 
        outWin.ActivePane.Name);

    if (MessageBox.Show("Activate Pane1?", "", MessageBoxButtons.YesNo) 
        == DialogResult.Yes)
        pane1.Activate();

    MessageBox.Show("The active Output window pane is " + 
        outWin.ActivePane.Name);
}

.NET Framework 보안

참고 항목

참조

OutputWindow 인터페이스

EnvDTE 네임스페이스

기타 리소스

방법: 자동화 개체 모델 코드의 예제 컴파일 및 실행