ToolStripComboBox::SelectedIndex Property

 

Gets or sets the index specifying the currently selected item.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
[BrowsableAttribute(false)]
property int SelectedIndex {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.

This property indicates the zero-based index of the currently selected item in the combo box list. Setting a new index raises the SelectedIndexChanged event.

Note   To deselect the currently selected item, set the SelectedIndex to -1.

.NET Framework
Available since 2.0
Return to top
Show: