TextSelection::IsActiveEndGreater Property
Visual Studio 2015
Gets whether the active point is equal to the bottom point.
Assembly: EnvDTE (in EnvDTE.dll)
Property Value
Type: System::BooleanA Boolean value indicating True if the text selection's active end is at a greater absolute character offset than the anchor in the text document, False if not.
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
Show: