PowerTools InputMan for ASP.NET 8.0J
CheckedItems プロパティ
使用例 

現在チェックボックスがオンになっている項目のコレクションを取得します。
構文
Public ReadOnly Property CheckedItems As CheckedItemCollection
public CheckedItemCollection CheckedItems {get;}
解説
CheckedItemsプロパティは、CheckBoxesプロパティがTrueの場合に、現在チェックボックスがオンになっているすべての項目を取得します。
インデックスのコレクションを取得する場合は、CheckedIndicesプロパティを使用します。

チェックボックスのチェック状態が変化すると、ItemCheckイベントが発生します。
使用例
次のサンプルコードは、リスト1のチェックボックスのチェック状態が変化したときに、項目の内容をリスト2に表示する方法を示します。
Imports GrapeCity.Web.Input.IMList

Protected Sub GcListBox1_ItemCheck(ByVal sender As Object, ByVal e As System.EventArgs) Handles GcListBox1.ItemCheck
    Dim item As ListItem
    GcListBox2.Items.Clear()

    For Each item In GcListBox1.CheckedItems
        GcListBox2.Items.Add(item.Text)
    Next
End Sub
using GrapeCity.Web.Input.IMList;

private void GcListBox1_ItemCheck(object sender, System.EventArgs e)
{
    GcListBox2.Items.Clear();

    foreach(ListItem item in GcListBox1.CheckedItems )
    {
        GcListBox2.Items.Add(GcListBox1.Items[aIndex].Content);
    }
}
参照

GcListBox クラス
GcListBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.