Dim mListView As New Infragistics.Win.UltraWinListView.UltraListView
mListView.Items.Add("Google","Google")
If Not mListView.Items().Contains("Google") ThenmListView.Items.Add("Google","Google") End If
the above gives me error.
Hi,
Thank you for contacting Infragistics Developer Support.
What you could do in order to check if an item with specified key exists in the Items collection of UltraListView is to first use the Cast method in order to cast them to UltraListViewItem enumerable collection. Then use the Any method to see if item with such key exists.
I have attached a simple sample demonstrating this approach.
Please let me know if you have any additional questions.
Thanks , it worked.
Wiki