TextSelection.IsActiveEndGreater Property

Definition

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

public:
 property bool IsActiveEndGreater { bool get(); };
public:
 property bool IsActiveEndGreater { bool get(); };
[System.Runtime.InteropServices.DispId(11)]
public bool IsActiveEndGreater { [System.Runtime.InteropServices.DispId(11)] get; }
[<System.Runtime.InteropServices.DispId(11)>]
[<get: System.Runtime.InteropServices.DispId(11)>]
member this.IsActiveEndGreater : bool
Public ReadOnly Property IsActiveEndGreater As Boolean

Property Value

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.

Attributes

Examples

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  

Applies to