Sdílet prostřednictvím


TextSelection.IsActiveEndGreater – vlastnost

Získá zda aktivní bod se rovná dolní bod.

Obor názvů:  EnvDTE
Sestavení:  EnvDTE (v EnvDTE.dll)

Syntaxe

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

Hodnota vlastnosti

Typ: System.Boolean
Logická hodnota označující True je-li aktivní konec vybraného textu na větší absolutní znak posunu než kotvy v textu dokumentu False if not.

Příklady

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

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

TextSelection Rozhraní

EnvDTE – obor názvů