CheckedListBox.CheckedIndexCollection クラス
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)


チェックされているインデックスのコレクションは、CheckedListBox コントロールのすべての項目のコレクションで構成したインデックスのサブセットです。これらのインデックスで、チェックされている状態または中間状態の項目を指定します。
コントロールの項目 (コントロールに含まれるすべての項目) のインデックス付きコレクションの例を次の表に示します。
前の例に基づいて、チェックされている項目のインデックスのインデックス付きコレクションを次の表に示します。
CheckedListBox クラスは、格納されたインデックス、Item プロパティ、および IndexOf メソッドにアクセスできる 2 つのメンバを保持しています。
前の例に基づいて、パラメータを値 1 に設定して Item プロパティを呼び出すと、値 3 が返されます。パラメータを値 3 に設定して IndexOf を呼び出すと、値 1 が返されます。

CheckedListBox.CheckedIndexCollection 内のチェック項目を列挙して各項目のチェック状態を調べる方法を次の例に示します。この例では、GetItemCheckState メソッドを使用して項目のチェック状態を取得します。この例では、CheckedIndices プロパティを使用して CheckedListBox.CheckedIndexCollection を取得し、CheckedItems プロパティを使用して CheckedListBox.CheckedItemCollection を取得する方法についても示します。
最初のループでは、項目のインデックスを基に、GetItemCheckState メソッドを使用して、各チェック項目の CheckState を取得します。2 番目のループでは GetItemCheckState も使用しますが、項目のインデックスの取得には ListBox.ObjectCollection.IndexOf メソッドを使用します。
Private Sub WhatIsChecked_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles WhatIsChecked.Click ' Display in a message box all the items that are checked. Dim indexChecked As Integer Dim itemChecked As Object Const quote As String = """" ' First show the index and check state of all selected items. For Each indexChecked In CheckedListBox1.CheckedIndices ' The indexChecked variable contains the index of the item. MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + _ CheckedListBox1.GetItemCheckState(indexChecked).ToString() + ".") Next ' Next show the object title and check state for each item selected. For Each itemChecked In CheckedListBox1.CheckedItems ' Use the IndexOf method to get the index of an item. MessageBox.Show("Item with title: " + quote + itemChecked.ToString() + quote + _ ", is checked. Checked state is: " + _ CheckedListBox1.GetItemCheckState(CheckedListBox1.Items.IndexOf(itemChecked)).ToString() + ".") Next End Sub
private void WhatIsChecked_Click(object sender, System.EventArgs e) { // Display in a message box all the items that are checked. // First show the index and check state of all selected items. foreach(int indexChecked in checkedListBox1.CheckedIndices) { // The indexChecked variable contains the index of the item. MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + checkedListBox1.GetItemCheckState(indexChecked).ToString() + "."); } // Next show the object title and check state for each item selected. foreach(object itemChecked in checkedListBox1.CheckedItems) { // Use the IndexOf method to get the index of an item. MessageBox.Show("Item with title: \"" + itemChecked.ToString() + "\", is checked. Checked state is: " + checkedListBox1.GetItemCheckState(checkedListBox1.Items.IndexOf(itemChecked)).ToString() + "."); } }
void WhatIsChecked_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Display in a message box all the items that are checked. // First show the index and check state of all selected items. IEnumerator^ myEnum1 = checkedListBox1->CheckedIndices->GetEnumerator(); while ( myEnum1->MoveNext() ) { Int32 indexChecked = *safe_cast<Int32^>(myEnum1->Current); // The indexChecked variable contains the index of the item. MessageBox::Show( String::Concat( "Index#: ", indexChecked, ", is checked. Checked state is: ", checkedListBox1->GetItemCheckState( indexChecked ), "." ) ); } // Next show the Object* title and check state for each item selected. IEnumerator^ myEnum2 = checkedListBox1->CheckedItems->GetEnumerator(); while ( myEnum2->MoveNext() ) { Object^ itemChecked = safe_cast<Object^>(myEnum2->Current); // Use the IndexOf method to get the index of an item. MessageBox::Show( String::Concat( "Item with title: \"", itemChecked, "\", is checked. Checked state is: ", checkedListBox1->GetItemCheckState( checkedListBox1->Items->IndexOf( itemChecked ) ), "." ) ); } }
private void whatIsChecked_Click(Object sender, System.EventArgs e) { // Display in a message box all the items that are checked. // First show the index and check state of all selected items. IEnumerator objEnum = checkedListBox1.get_CheckedIndices(). GetEnumerator(); while (objEnum.MoveNext()) { int indexChecked = (int)(Int32)(objEnum.get_Current()); // The indexChecked variable contains the index of the item. MessageBox.Show("Index#: " + (Int32)indexChecked + ", is checked. Checked state is:" + checkedListBox1.GetItemCheckState(indexChecked).ToString() + "."); } // Next show the object title and check state for each item selected. for (int iCtr = 0; iCtr < checkedListBox1.get_CheckedItems().get_Count(); iCtr++) { Object itemChecked = checkedListBox1.get_CheckedItems().get_Item(iCtr); // Use the IndexOf method to get the index of an item. MessageBox.Show("Item with title: \"" + itemChecked.ToString() + "\", is checked. Checked state is: " + checkedListBox1.GetItemCheckState( checkedListBox1.get_Items().IndexOf(itemChecked)).ToString() + "."); } } //whatIsChecked_Click

System.Windows.Forms.CheckedListBox.CheckedIndexCollection


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


CheckedListBox.CheckedIndexCollection プロパティ

名前 | 説明 | |
---|---|---|
![]() | Count | チェックされている項目の数を取得します。 |
![]() | IsReadOnly | コレクションが読み取り専用かどうかを示す値を取得します。 |
![]() | Item | CheckedListBox コントロール内でチェックされている項目のインデックスを取得します。 |

名前 | 説明 | |
---|---|---|
![]() | System.Collections.ICollection.IsSynchronized | CheckedListBox.CheckedIndexCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
![]() | System.Collections.ICollection.SyncRoot | コントロールのコレクションへのアクセスを同期するために使用するオブジェクトを取得します。このメンバの説明については、ICollection.SyncRoot のトピックを参照してください。 |
![]() | System.Collections.IList.IsFixedSize | このメンバの説明については、IList.IsFixedSize のトピックを参照してください。 |
![]() | System.Collections.IList.Item | このメンバの説明については、IList.Item のトピックを参照してください。 |

CheckedListBox.CheckedIndexCollection メソッド

名前 | 説明 | |
---|---|---|
![]() | Contains | 指定したインデックスがコレクション内にあるかどうかを判断します。 |
![]() | CopyTo | コレクション全体を既存の配列内の指定した位置にコピーします。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetEnumerator | CheckedIndices コレクションを反復処理するために使用できる列挙子を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | IndexOf | チェックされているインデックスのコレクションへのインデックスを返します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | System.Collections.IList.Add | CheckedListBox.CheckedIndexCollection に項目を追加します。このメンバの説明については、IList.Add のトピックを参照してください。 |
![]() | System.Collections.IList.Clear | CheckedListBox.CheckedIndexCollection からすべての項目を削除します。このメンバの説明については、IList.Clear のトピックを参照してください。 |
![]() | System.Collections.IList.Contains | 指定したインデックスが CheckedListBox.CheckedIndexCollection 内にあるかどうかを確認します。このメンバの説明については、IList.Contains のトピックを参照してください。 |
![]() | System.Collections.IList.IndexOf | このメンバの説明については、IList.IndexOf のトピックを参照してください。 |
![]() | System.Collections.IList.Insert | このメンバの説明については、IList.Insert のトピックを参照してください。 |
![]() | System.Collections.IList.Remove | このメンバの説明については、IList.Remove のトピックを参照してください。 |
![]() | System.Collections.IList.RemoveAt | このメンバの説明については、IList.RemoveAt のトピックを参照してください。 |

CheckedListBox.CheckedIndexCollection メンバ
CheckedListBox でチェックされている項目 (中間状態の項目を含む) のインデックスのコレクションをカプセル化します。
CheckedListBox.CheckedIndexCollection データ型で公開されるメンバを以下の表に示します。

名前 | 説明 | |
---|---|---|
![]() | Count | チェックされている項目の数を取得します。 |
![]() | IsReadOnly | コレクションが読み取り専用かどうかを示す値を取得します。 |
![]() | Item | CheckedListBox コントロール内でチェックされている項目のインデックスを取得します。 |

名前 | 説明 | |
---|---|---|
![]() | Contains | 指定したインデックスがコレクション内にあるかどうかを判断します。 |
![]() | CopyTo | コレクション全体を既存の配列内の指定した位置にコピーします。 |
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetEnumerator | CheckedIndices コレクションを反復処理するために使用できる列挙子を返します。 |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | IndexOf | チェックされているインデックスのコレクションへのインデックスを返します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | System.Collections.IList.Add | CheckedListBox.CheckedIndexCollection に項目を追加します。このメンバの説明については、IList.Add のトピックを参照してください。 |
![]() | System.Collections.IList.Clear | CheckedListBox.CheckedIndexCollection からすべての項目を削除します。このメンバの説明については、IList.Clear のトピックを参照してください。 |
![]() | System.Collections.IList.Contains | 指定したインデックスが CheckedListBox.CheckedIndexCollection 内にあるかどうかを確認します。このメンバの説明については、IList.Contains のトピックを参照してください。 |
![]() | System.Collections.IList.IndexOf | このメンバの説明については、IList.IndexOf のトピックを参照してください。 |
![]() | System.Collections.IList.Insert | このメンバの説明については、IList.Insert のトピックを参照してください。 |
![]() | System.Collections.IList.Remove | このメンバの説明については、IList.Remove のトピックを参照してください。 |
![]() | System.Collections.IList.RemoveAt | このメンバの説明については、IList.RemoveAt のトピックを参照してください。 |
![]() | System.Collections.ICollection.IsSynchronized | CheckedListBox.CheckedIndexCollection へのアクセスが同期されている (スレッド セーフである) かどうかを示す値を取得します。 |
![]() | System.Collections.ICollection.SyncRoot | コントロールのコレクションへのアクセスを同期するために使用するオブジェクトを取得します。このメンバの説明については、ICollection.SyncRoot のトピックを参照してください。 |
![]() | System.Collections.IList.IsFixedSize | このメンバの説明については、IList.IsFixedSize のトピックを参照してください。 |
![]() | System.Collections.IList.Item | このメンバの説明については、IList.Item のトピックを参照してください。 |

Weblioに収録されているすべての辞書からCheckedListBox.CheckedIndexCollectionを検索する場合は、下記のリンクをクリックしてください。

- CheckedListBox.CheckedIndexCollectionのページへのリンク