TokenInfo::StartIndex Property

 

Determines the index of the first character of the token.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
property int StartIndex {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

Returns an integer specifying the first character of the token.

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

Return to top
Show: