Propriedade TextSelection.TextPane
Obtém o painel de texto que contém o texto selecionado.
Namespace: EnvDTE
Assembly: EnvDTE (em EnvDTE.dll)
Sintaxe
'Declaração
ReadOnly Property TextPane As TextPane
TextPane TextPane { get; }
property TextPane^ TextPane {
TextPane^ get ();
}
abstract TextPane : TextPane
function get TextPane () : TextPane
Valor de propriedade
Tipo: EnvDTE.TextPane
A TextPane object.
Exemplos
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
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.