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
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
bool get ();
}
abstract IsActiveEndGreater : bool with get
function get IsActiveEndGreater () : boolean
Valore proprietà
Tipo: Boolean
Valore booleano che indica se True l'entità finale attiva della selezione del testo è su un più carattere assoluto offset di ancoraggio nel documento di testo, False caso contrario.
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
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per altre informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.