CheckedListBox.CheckedItemCollectionとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > CheckedListBox.CheckedItemCollectionの意味・解説 

CheckedListBox.CheckedItemCollection クラス

CheckedListBox コントロールでチェックされている項目 (中間状態の項目を含む) のコレクションをカプセル化します。

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Class CheckedItemCollection
    Implements IList, ICollection, IEnumerable
Dim instance As CheckedItemCollection
public class CheckedItemCollection : IList,
 ICollection, IEnumerable
public ref class CheckedItemCollection : IList,
 ICollection, IEnumerable
public class CheckedItemCollection implements
 IList, ICollection, 
    IEnumerable
public class CheckedItemCollection implements
 IList, ICollection, 
    IEnumerable
解説解説
使用例使用例

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.Object
  System.Windows.Forms.CheckedListBox.CheckedItemCollection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CheckedListBox.CheckedItemCollection メンバ
System.Windows.Forms 名前空間

CheckedListBox.CheckedItemCollection プロパティ


パブリック プロパティパブリック プロパティ

明示的インターフェイスの実装明示的インターフェイスの実装
  名前 説明
インターフェイスの明示的な実装 System.Collections.ICollection.IsSynchronized このメンバの説明については、ICollection.IsSynchronized のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.ICollection.SyncRoot このメンバの説明については、ICollection.SyncRoot のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.IsFixedSize このメンバの説明については、IList.IsFixedSize のトピックを参照してください。
参照参照

関連項目

CheckedListBox.CheckedItemCollection クラス
System.Windows.Forms 名前空間

CheckedListBox.CheckedItemCollection メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイスの実装
  名前 説明
インターフェイスの明示的な実装 System.Collections.IList.Add このメンバの説明については、IList.Add のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Clear このメンバの説明については、IList.Clear のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Insert このメンバの説明については、Insert のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Remove このメンバの説明については、Remove のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.RemoveAt このメンバの説明については、RemoveAt のトピックを参照してください。
参照参照

関連項目

CheckedListBox.CheckedItemCollection クラス
System.Windows.Forms 名前空間

CheckedListBox.CheckedItemCollection メンバ

CheckedListBox コントロールでチェックされている項目 (中間状態の項目を含む) のコレクションをカプセル化します。

CheckedListBox.CheckedItemCollection データ型で公開されるメンバを以下の表に示します。


パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイスの実装
  名前 説明
インターフェイスの明示的な実装 System.Collections.IList.Add このメンバの説明については、IList.Add のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Clear このメンバの説明については、IList.Clear のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Insert このメンバの説明については、Insert のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.Remove このメンバの説明については、Remove のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.RemoveAt このメンバの説明については、RemoveAt のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.ICollection.IsSynchronized このメンバの説明については、ICollection.IsSynchronized のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.ICollection.SyncRoot このメンバの説明については、ICollection.SyncRoot のトピックを参照してください。
インターフェイスの明示的な実装 System.Collections.IList.IsFixedSize このメンバの説明については、IList.IsFixedSize のトピックを参照してください。
参照参照

関連項目

CheckedListBox.CheckedItemCollection クラス
System.Windows.Forms 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からCheckedListBox.CheckedItemCollectionを検索した結果を表示しています。
Weblioに収録されているすべての辞書からCheckedListBox.CheckedItemCollectionを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からCheckedListBox.CheckedItemCollection を検索

英和和英テキスト翻訳

英語⇒日本語日本語⇒英語

辞書ショートカット

すべての辞書の索引

「CheckedListBox.CheckedItemCollection」の関連用語











CheckedListBox.CheckedItemCollectionのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



CheckedListBox.CheckedItemCollectionのページの著作権

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2026 Microsoft.All rights reserved.

©2026 GRAS Group, Inc.RSS