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

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

CheckedListBox.CheckedIndexCollection クラス

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

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

Public Class CheckedIndexCollection
    Implements IList, ICollection, IEnumerable
Dim instance As CheckedIndexCollection
public class CheckedIndexCollection : IList,
 ICollection, IEnumerable
public ref class CheckedIndexCollection : IList,
 ICollection, IEnumerable
public class CheckedIndexCollection implements
 IList, ICollection, 
    IEnumerable
public class CheckedIndexCollection 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.CheckedIndexCollection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
CheckedListBox.CheckedIndexCollection メンバ
System.Windows.Forms 名前空間
CheckedListBox.CheckedIndices プロパティ
CheckedListBox.CheckedItems プロパティ
CheckedListBox.Items プロパティ

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 クラス
System.Windows.Forms 名前空間
CheckedListBox.CheckedIndices プロパティ
CheckedListBox.CheckedItems プロパティ
CheckedListBox.Items プロパティ

CheckedListBox.CheckedIndexCollection メソッド


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

プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 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 クラス
System.Windows.Forms 名前空間
CheckedListBox.CheckedIndices プロパティ
CheckedListBox.CheckedItems プロパティ
CheckedListBox.Items プロパティ

CheckedListBox.CheckedIndexCollection メンバ

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

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


パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ Count チェックされている項目の数を取得します
パブリック プロパティ IsReadOnly コレクション読み取り専用かどうかを示す値を取得します
パブリック プロパティ Item CheckedListBox コントロール内でチェックされている項目のインデックス取得します
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
明示的インターフェイスの実装明示的インターフェイス実装
  名前 説明
インターフェイスの明示的な実装 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 のトピック参照してください
参照参照

関連項目

CheckedListBox.CheckedIndexCollection クラス
System.Windows.Forms 名前空間
CheckedListBox.CheckedIndices プロパティ
CheckedListBox.CheckedItems プロパティ
CheckedListBox.Items プロパティ



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

辞書ショートカット

すべての辞書の索引

「CheckedListBox.CheckedIndexCollection」の関連用語

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

   

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



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

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

©2024 GRAS Group, Inc.RSS