TextSelection::IsActiveEndGreater Property

 

Gets whether the active point is equal to the bottom point.

Namespace:   EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

property bool IsActiveEndGreater {
	bool get();
}

Property Value

Type: System::Boolean

A 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
Return to top
Show: