Share via


TextRange.EndPoint Property

Gets an EditPoint that is the location of the end of the range.

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

Syntax

'Declaration
ReadOnly Property EndPoint As EditPoint
'Usage
Dim instance As TextRange 
Dim value As EditPoint 

value = instance.EndPoint
EditPoint EndPoint { get; }
property EditPoint^ EndPoint {
    EditPoint^ get ();
}
function get EndPoint () : EditPoint

Property Value

Type: EnvDTE.EditPoint
A EditPoint object.

Remarks

The edit point location is immediately after the last character of the code element (including any semicolon, terminating syntax, or separating syntax). Fetching the property implicitly opens the source file if it can be opened. Some languages, however, cannot open arbitrary files on the disk and can only open files in currently open solutions.

.NET Framework Security

See Also

Reference

TextRange Interface

TextRange Members

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples