i have set selection mode to multiExtended in vb.net
So i am able to select multiple elements but how to access those selected values/indices using SelectedItems property?
i have set selection mode to multiExtended in vb.net So i am able to
Share
SelectedItemsgives you aSelectedObjectCollectionwhich you could go through using simple indices such as:mySelectList.SelectedItems[0]would give you the first selected item.