Partilhar via


Propriedade TextSelection.IsActiveEndGreater

Obtém se o ponto ativo é igual ao ponto inferior.

Namespace:  EnvDTE
Assembly:  EnvDTE (em EnvDTE.dll)

Sintaxe

'Declaração
ReadOnly Property IsActiveEndGreater As Boolean
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
    bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean

Valor de propriedade

Tipo: System.Boolean
Um valor booleano indicando True se o texto selecionado do active final está em um deslocamento de caracteres absoluto maior que a âncora no texto do documento, False se não for.

Exemplos

Sub IsActiveEndGreaterExample()
   ' Before running this example, open a text document.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   ' Go to first line in document.
   objSel.GotoLine(1, False)
   MsgBox("Is the active point at the bottom of the document? " & objSel.IsActiveEndGreater)
   objSel.EndOfDocument(True)
   MsgBox("Is the active point at the bottom of the document? " & objSel.IsActiveEndGreater)
End Sub

Segurança do .NET Framework

Consulte também

Referência

TextSelection Interface

Namespace EnvDTE