Condividi tramite


Proprietà TextSelection.IsActiveEndGreater

Ottiene un valore che indica se il punto attivo corrisponde al punto finale.

Spazio dei nomi:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Sintassi

'Dichiarazione
ReadOnly Property IsActiveEndGreater As Boolean
    Get
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
    bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean

Valore proprietà

Tipo: System.Boolean
Valore Boolean True se l'estremità attiva del testo selezionato è a un offset carattere assoluto maggiore rispetto all'ancoraggio nel documento di testo; in caso contrario False.

Esempi

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

Sicurezza di .NET Framework

Vedere anche

Riferimenti

TextSelection Interfaccia

Spazio dei nomi EnvDTE