TokenInfo.StartIndex Property

Determines the index of the first character of the token.

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

Syntax

'宣言
Public Property StartIndex As Integer
'使用
Dim instance As TokenInfo
Dim value As Integer

value = instance.StartIndex

instance.StartIndex = value
public int StartIndex { get; set; }
public:
property int StartIndex {
    int get ();
    void set (int value);
}
public function get StartIndex () : int
public function set StartIndex (value : int)

Property Value

Type: System.Int32

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.

Permissions

See Also

Reference

TokenInfo Class

TokenInfo Members

Microsoft.VisualStudio.Package Namespace