共用方式為


TextPane.Window 屬性

取得 Window 物件,此物件包含已指定的窗格。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
ReadOnly Property Window As Window
Window Window { get; }
property Window^ Window {
    Window^ get ();
}
abstract Window : Window
function get Window () : Window

屬性值

型別:EnvDTE.Window
Window 物件。

範例

Sub WindowExample(ByVal dte As EnvDTE.DTE)
    Dim objTW As TextWindow
    Dim objPane As TextPane
    Dim objStart As TextPoint

    objTW = dte.ActiveWindow.Object
    objPane = objTW.ActivePane

    MsgBox("The active pane is " & Str(objPane.Height) & " lines high _
    and " & Str(objPane.Width) & " columns wide.")
    objStart = objPane.StartPoint
    MsgBox("It begins at line " & Str(objStart.Line) & ", column " & _
    Str(objStart.LineCharOffset) & ".")
    objPane.Window.Close()
End Sub
public void WindowExample(_DTE dte)
{
    TextWindow tw;
    TextPane tpn;
    TextPoint tpt;

    tw = (TextWindow)dte.ActiveWindow.Object;
    tpn = tw.ActivePane;

    MessageBox.Show("The active pane is " + tpn.Height.ToString () + " 
    lines high and " + tpn.Width.ToString () + " columns wide.");
    tpt = tpn.StartPoint;
    MessageBox.Show("It begins at line " + tpt.Line.ToString () + ", 
    column " + tpt.LineCharOffset.ToString () + ".");
    tpn.Window.Close (vsSaveChanges.vsSaveChangesYes);
}

.NET Framework 安全性

請參閱

參考

TextPane 介面

EnvDTE 命名空間