TextPane Interface
Visual Studio 2012
Represents a pane within a text editor window.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
The TextPane type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Collection | Gets the collection containing the TextPane object supporting this property. |
![]() | DTE | Gets the top-level extensibility object. |
![]() | Height | Gets the height of the text pane in character units. |
![]() | Selection | Gets an object representing the current selection on the TextPane object. |
![]() | StartPoint | Gets the TextPoint object representing the first displayed character of the pane. |
![]() | Width | Gets the width of the pane in character units. |
![]() | Window | Gets the Window object that contains the pane. |
| Name | Description | |
|---|---|---|
![]() | Activate | Moves the focus to the current item. |
![]() | IsVisible | Returns a value indicating whether the character or specified characters are visible in the text pane. |
![]() | TryToShow | Adjusts the location of the view in the text buffer so that the indicated range of text is shown in the text pane, if possible. You can control where in the pane the text displays. |
public void TextPaneExample(_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 () + "."); }

