PowerTools PlusPak for Windows Forms 8.0J
CheckedItems プロパティ
使用例 

GcCheckedGroupBox内のオンになっている項目のコレクションを取得します。
構文
Public ReadOnly Property CheckedItems As CheckedCheckBoxItemCollection
public CheckedCheckBoxItemCollection CheckedItems {get;}

プロパティ値

GcCheckedGroupBoxコントロール内のオンになっている項目を表すCheckedCheckBoxItemCollection
解説
このコレクションはItemsコレクション内の項目のサブセットで、CheckBoxItem.Checkedプロパティがtrueである項目のみを表します。このコレクションのインデックスは昇順に並べられています。
使用例
次のサンプルコードは、CheckedCheckBoxItemCollection内のすべての項目を列挙し、項目のテキストをSystem.Windows.Forms.ListBoxコントロールに表示します。この例は、CheckedItemsプロパティを使用してCheckedCheckBoxItemCollectionを取得する方法を示します。このサンプルコードは、GcCheckedGroupBoxクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// Fill listBox1 with all the checked items in gcCheckedGroupBox1.
private void DisplayAllCheckedItems()
{
    // Display all checked items of gcCheckedGroupBox1 in list box.
    this.listBox1.Items.Clear();
    CheckedCheckBoxItemCollection checkedItems = this.gcCheckedGroupBox1.CheckedItems;
    foreach (CheckBoxItem item in checkedItems)
    {
        this.listBox1.Items.Add(item.Text);
    }
}
' Fill listBox1 with all the checked items in gcCheckedGroupBox1.
Private Sub DisplayAllCheckedItems()
    ' Display all checked items of gcCheckedGroupBox1 in list box.
    Me.listBox1.Items.Clear()
    Dim checkedItems As CheckedCheckBoxItemCollection = Me.gcCheckedGroupBox1.CheckedItems
    For Each item As CheckBoxItem In checkedItems
        Me.listBox1.Items.Add(item.Text)
    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 メンバ
Items プロパティ
CheckedIndices プロパティ
Items プロパティ
CheckedIndices プロパティ

Send Feedback