Finds the first item in the list that matches the specified string.
Finds the first item in the list which starts with the specified string.
public int FindString(string);
Finds the first item from the given index which starts with the specified string.
public int FindString(string,int);
Finds the first item from the given index which starts with or exactly matches the specified string.
public int FindString(string,int,bool);
AutoComplete Class | Skybound.AutoComplete Namespace