ListBox::GetSelectedIndices Method ()

 

Gets the array of index values for currently selected items in the ListBox control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
virtual array<int>^ GetSelectedIndices()

Return Value

Type: array<System::Int32>^

An array of integers, each representing the index of a selected item in the list box.

Use the GetSelectedIndices method to identify or access the selected items in the ListBox control. Each element in the returned array represents the index for a selected list item. You can use the index values to access the items in the Items collection.

.NET Framework
Available since 2.0
Return to top
Show: