Share via


TextSelection.TextPane (Propiedad)

Obtiene el panel de texto que contiene la selección de texto.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
ReadOnly Property TextPane As TextPane
TextPane TextPane { get; }
property TextPane^ TextPane {
    TextPane^ get ();
}
abstract TextPane : TextPane with get
function get TextPane () : TextPane

Valor de propiedad

Tipo: EnvDTE.TextPane
Un objeto TextPane.

Ejemplos

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

Seguridad de .NET Framework

Vea también

Referencia

TextSelection Interfaz

EnvDTE (Espacio de nombres)