GCIM 名前空間 > GcListBox オブジェクト : FindString メソッド |
var instance = new GCIM.GcListBox(container, id); var value; // Type: number // パラメータ var findTargetColumnIndex; //タイプ: number var s; //タイプ: string var startIndex; //タイプ: number value = instance.FindString(findTargetColumnIndex, s, startIndex);
function FindString( findTargetColumnIndex : number, s : string, startIndex : number ) : number;
// "b"で始まる項目を選択します。 var list = FindIMControl("GcListBox1"); list.SetSelectedIndex(list.FindString(0, "b", 0));