TextPane2.Window Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the Window object that contains the pane.
public:
property EnvDTE::Window ^ Window { EnvDTE::Window ^ get(); };
public:
property EnvDTE::Window ^ Window { EnvDTE::Window ^ get(); };
[System.Runtime.InteropServices.DispId(3)]
public EnvDTE.Window Window { [System.Runtime.InteropServices.DispId(3)] get; }
[<System.Runtime.InteropServices.DispId(3)>]
[<get: System.Runtime.InteropServices.DispId(3)>]
member this.Window : EnvDTE.Window
Public ReadOnly Property Window As Window
Property Value
A Window object.
Implements
- Attributes
Examples
This example opens a text document, displays text in it, uses the SelectAll
method of TextPane2.Selection
object to select all the text, and then closes the window that contains the text pane.
Imports EnvDTE
Imports EnvDTE80
Sub TextPane2WindowExample(ByVal dte As DTE2)
Dim objTW As TextWindow
Dim objPane As TextPane2
Dim objTextDoc As TextDocument
Dim objTextPt As TextPoint
Dim objEP As EditPoint
' Create a new text document.
_applicationObject.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create EditPoint,
' TextPoint, and TextPane objects.
objTextDoc = CType(_applicationObject.ActiveDocument.Object _
("TextDocument"), TextDocument)
objEP = objTextDoc.StartPoint.CreateEditPoint
objTextPt = objTextDoc.StartPoint
' Plug in some text.
objEP.Insert("A test sentence.")
objTW = CType(dte.ActiveWindow.Object, TextWindow)
objPane = CType(objTW.ActivePane, TextPane2)
MsgBox("Using TextPane2.Selection to select all the text...")
objPane.Selection.SelectAll()
MsgBox("Closing the window...")
objPane.Window.Close(vsSaveChanges.vsSaveChangesNo)
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void TextPane2WindowExample(DTE2 dte)
{
TextWindow objTW;
TextPane2 objPane;
TextDocument objTextDoc;
TextPoint objTextPt;
EditPoint2 objEP;
// Create a new text document.
_applicationObject.ItemOperations.NewFile
(@"General\Text File", "test.txt", Constants.vsViewKindTextView);
// Get a handle to the text document and create EditPoint2,
// TextPoint, and TextPane2 objects.
objTextDoc =(TextDocument)_applicationObject.ActiveDocument.Object
("TextDocument");
objEP = (EditPoint2)objTextDoc.StartPoint.CreateEditPoint();
objTextPt = objTextDoc.StartPoint;
// Plug in some text.
objEP.Insert("A test sentence.");
objTW = (TextWindow)_applicationObject.ActiveWindow.Object;
objPane = (TextPane2)objTW.ActivePane;
MessageBox.Show("Using TextPane2.Selection to select
all the text...");
objPane.Selection.SelectAll();
MessageBox.Show("Closing the window...");
objPane.Window.Close(vsSaveChanges.vsSaveChangesNo);
}