Hi all!
I want to get the string that a user have selected in a UltraListView and I try to get it using STRING(tablasseleccionadas:SelectedItems) but it gives me the collection not the only selected item, anybody knows how to do that?
THX in advance.
Hi,
I'm not familiar with the syntax you are using here, but in C#, you would get the selected item(s) like this:
foreach (UltraListViewItem selectedItem in this.ultraListView1.SelectedItems) { Debug.WriteLine(selectedItem.Text); }