Udostępnij za pośrednictwem


Właściwość TextSelection.IsActiveEndGreater —

Pobiera się, czy punkt aktywny jest równa dolny punkt.

Przestrzeń nazw:  EnvDTE
Zestaw:  EnvDTE (w EnvDTE.dll)

Składnia

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

Wartość właściwości

Typ: Boolean
Wartość logiczna wskazująca True Jeśli aktywne zaznaczenie tekstu koniec jest większa przesunięciem Bezwzględny charakter niż zakotwiczenia w dokumencie tekstowym False Jeśli nie.

Przykłady

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

Zabezpieczenia programu .NET Framework

Zobacz też

Informacje

TextSelection Interfejs

Przestrzeń nazw EnvDTE