Users Pricing

forum

Home Forums ListView CheckedItems find item by name – MindStick

ListView CheckedItems find item by name

Jayden Bell 2759 04 Sep 2013

I need to check if an item with a particular name exists in the CheckedItems collection of a ListView.

So far I've tried:

ListViewItem item = new ListViewItem(itemName);

if (listView1.CheckedItems.IndexOf(item) >= 0)

   return true;

and

ListViewItem item = new ListViewItem(itemName);

if (listView1.CheckedItems.Contains(item))

   return true;

Neither of those worked. Is there a way to do this without looping through CheckedItems and checking them one by one?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md