I am trying to select the first item of the ultralistview through code behind. I don't see a select method off of items collection. I tried using <listviewbox>.Items[0].CheckedState and <listviewbox>.Items[0].Activate(), but they do not select the item. I appreciate any help in this regard.
No, it isn't only for accessing the already selected items. The collection exposes several public members, for example, an Add method.
Thanks Brian. Isn't UltraListView.SelectedItems is for accessing the already selected items? All I want to do is to pre-select the first list item through the code when the form is initially loaded. It should be as simple as <listView>.Items[0].Select(), but UltraListView doesn't have a Select method off of items collection.
See UltraListView.SelectedItems