GCIM 名前空間 > GcListBox オブジェクト : GetCheckedIndices メソッド |
var instance = new GCIM.GcListBox(container, id); var value; // Type: Array value = instance.GetCheckedIndices();
function GetCheckedIndices() : Array;
function GcListBox1_ItemCheck(sender, eArgs) { var listitem = sender.GetCheckedIndices(); for( var i = 0; i < listitem.length; i++ ) { // チェックされた項目を選択状態にします。 sender.SetSelected(listitem[i], true); } }