SelectedValue Property (C1ComboBox)
Gets or sets the SelectedValue of
C1ComboBox.
public virtual System.string SelectedValue {get; set;}
'Declaration
Public Overridable Property SelectedValue As System.String
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.Add(new C1ComboBoxItem("test2"));
// select the test2 item.
c.SelectedValue = "test2";