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 を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「CheckedListBox.CheckedItemCollection」の関連用語











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

   

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



CheckedListBox.CheckedItemCollectionのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS