PowerTools PlusPak for Windows Forms 8.0J
Items プロパティ (GcCheckedGroupBox)
使用例 

GcCheckedGroupBoxコントロールに含まれるすべての項目のコレクションを取得します。
構文
Public ReadOnly Property Items As CheckBoxItemCollection
public CheckBoxItemCollection Items {get;}

プロパティ値

GcCheckedGroupBoxコントロールに含まれる項目を表すCheckBoxItemCollection
解説
Itemsプロパティを使用すると、現在GcCheckedGroupBoxコントロールに格納されている項目のリストへの参照を取得できます。この参照を使用して、コレクション内の項目を追加または削除したり、項目数を確認したりできます。項目コレクションに対して実行できるタスクの詳細については、CheckBoxItemCollectionクラスのリファレンストピックを参照してください。
使用例
次のサンプルコードは、CheckBoxItemCollection内のすべての項目を列挙し、項目のテキスト、インデックス、およびチェック状態をSystem.Windows.Forms.ListBoxコントロールに表示します。この例は、Itemsプロパティを使用してCheckBoxItemCollectionを取得する方法と、CheckBoxItemCollection.IndexOfメソッドを使用して項目のインデックスを取得する方法を示します。このサンプルコードは、GcCheckedGroupBoxクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// Fill listBox1 with all the items in gcCheckedGroupBox1.
private void DisplayAllItems()
{
    // Display all the items of gcCheckedGroupBox1 in list box.
    this.listBox1.Items.Clear();
    CheckBoxItemCollection items = this.gcCheckedGroupBox1.Items;
    foreach (CheckBoxItem item in items)
    {
        this.listBox1.Items.Add(
             item.Text + 
            " index: " + items.IndexOf(item).ToString() + 
            " checked state: " + item.Checked);
    }
}
' Fill listBox1 with all the items in gcCheckedGroupBox1.
Private Sub DisplayAllItems()
    ' Display all the items of gcCheckedGroupBox1 in list box.
    Me.listBox1.Items.Clear()
    Dim items As CheckBoxItemCollection = Me.gcCheckedGroupBox1.Items
    For Each item As CheckBoxItem In items
        Me.listBox1.Items.Add(item.Text + " index: " + items.IndexOf(item).ToString() + " checked state: " + item.Checked.ToString())
    Next
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcCheckedGroupBox クラス
GcCheckedGroupBox メンバ
CheckedItems プロパティ
CheckedIndices プロパティ
CheckedItems プロパティ
CheckedIndices プロパティ

Send Feedback