ToolStripComboBox::SelectedItem Property
.NET Framework (current version)
Gets or sets currently selected item in the ToolStripComboBox.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: [BrowsableAttribute(false)] [BindableAttribute(true)] property Object^ SelectedItem { Object^ get(); void set(Object^ value); }
Property Value
Type: System::Object^The object that is the currently selected item or null if there is no currently selected item.
When you set the SelectedItem property to an object, the ToolStripComboBox attempts to make that object the currently selected one in the list. If the object is found in the list, it is displayed in the edit portion of the ToolStripComboBox and the SelectedIndex property is set to the corresponding index. If the object does not exist in the list, the SelectedIndex property is left at its current value.
.NET Framework
Available since 2.0
Available since 2.0
Show: