TokenInfo.StartIndex Property

Definition

Determines the index of the first character of the token.

public:
 property int StartIndex { int get(); void set(int value); };
public:
 property int StartIndex { int get(); void set(int value); };
public int StartIndex { get; set; }
member this.StartIndex : int with get, set
Public Property StartIndex As Integer

Property Value

Returns an integer specifying the first character of the token.

Remarks

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.

Applies to