Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the text pane that contains the selected text.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property TextPane As TextPane
TextPane TextPane { get; }
property TextPane^ TextPane {
TextPane^ get ();
}
abstract TextPane : TextPane
function get TextPane () : TextPane
Property Value
Type: EnvDTE.TextPane
A TextPane object.
Examples
Sub TextPaneExample()
' Before running this example, open a code document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
Dim objTP As TextPane = objSel.TextPane
' List text pane height and width property values.
MsgBox("Text pane height: " & objTP.Height & vbCr & "Text pane width: " & objTP.Width)
End Sub
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.