Share via


TokenInfo.EndIndex Property

Determines the index of the last character of the token.

Namespace:  Microsoft.VisualStudio.Package
Assemblies:   Microsoft.VisualStudio.Package.LanguageService (in Microsoft.VisualStudio.Package.LanguageService.dll)
  Microsoft.VisualStudio.Package.LanguageService.10.0 (in Microsoft.VisualStudio.Package.LanguageService.10.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.12.0 (in Microsoft.VisualStudio.Package.LanguageService.12.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.9.0 (in Microsoft.VisualStudio.Package.LanguageService.9.0.dll)
  Microsoft.VisualStudio.Package.LanguageService.11.0 (in Microsoft.VisualStudio.Package.LanguageService.11.0.dll)

Syntax

'Declaration
Public Property EndIndex As Integer
public int EndIndex { get; set; }
public:
property int EndIndex {
    int get ();
    void set (int value);
}
member EndIndex : int with get, set
function get EndIndex () : int 
function set EndIndex (value : int)

Property Value

Type: Int32
Returns an integer specifying the last character of the token.

Remarks

The IScanner scanner operates on lines of source, parsing each line for tokens. The character index specified in EndIndex is an offset into the current line being parsed.

.NET Framework Security

See Also

Reference

TokenInfo Class

Microsoft.VisualStudio.Package Namespace