CheckedListBox.Items プロパティ

定義

この CheckedListBox 内の項目のコレクションを取得します。

public:
 property System::Windows::Forms::CheckedListBox::ObjectCollection ^ Items { System::Windows::Forms::CheckedListBox::ObjectCollection ^ get(); };
public System.Windows.Forms.CheckedListBox.ObjectCollection Items { get; }
member this.Items : System.Windows.Forms.CheckedListBox.ObjectCollection
Public ReadOnly Property Items As CheckedListBox.ObjectCollection

プロパティ値

CheckedListBox.ObjectCollection 内の項目を表す CheckedListBox コレクション。

次の例では、 の CheckedListBox.CheckedIndexCollection チェックされた項目を列挙して、アイテムのチェック状態を確認します。 この例では、 プロパティを Items 使用して を CheckedListBox.ObjectCollection 取得し、 メソッドを使用して項目のインデックスを ListBox.ObjectCollection.IndexOf 取得します。 この例では、 プロパティを使用して を CheckedIndices 取得し、 CheckedListBox.CheckedIndexCollectionプロパティを CheckedItems 使用して を CheckedListBox.CheckedItemCollection取得する方法も示します。

最初のループでは、 メソッドを GetItemCheckState 使用して、項目のインデックスを指定して、チェックされた各項目の を取得 CheckState します。 2 番目のループでは も を使用 GetItemCheckStateしますが、 メソッドを ListBox.ObjectCollection.IndexOf 使用して項目のインデックスを取得します。

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.
    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() + ".");
    }
}
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

注釈

Itemsプロパティを使用すると、コントロールに現在格納されている項目の一覧への参照をCheckedListBox取得できます。 この参照を使用すると、項目の追加、項目の削除、コレクション内の項目の数の取得を行うことができます。 項目コレクションで実行できるタスクの詳細については、クラス参照のトピックを CheckedListBox.ObjectCollection 参照してください。

適用対象

こちらもご覧ください