Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets whether the active point is equal to the bottom point.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
ReadOnly Property IsActiveEndGreater As Boolean
bool IsActiveEndGreater { get; }
property bool IsActiveEndGreater {
bool get ();
}
abstract IsActiveEndGreater : bool
function get IsActiveEndGreater () : boolean
Property Value
Type: System.Boolean
A Boolean value indicating True if the selected text's active end is at a greater absolute character offset than the anchor in the text document, False if not.
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
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.