ListControl.SelectedValue Property
Gets or sets the value of the member property specified by the ValueMember property.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
[BrowsableAttribute(false)] [BindableAttribute(true)] public Object SelectedValue { get; set; }
Property Value
Type: System.ObjectAn object containing the value of the member of the data source specified by the ValueMember property.
| Exception | Condition |
|---|---|
| InvalidOperationException |
The assigned value is null or the empty string (""). |
If a property is not specified in ValueMember, SelectedValue returns the results of the ToString method of the object.
SelectedIndex , SelectedValue, and FormattingEnabled are related as follows:
-
If FormattingEnabled is false, SelectedIndex will not be set to -1 when SelectedValue is blank.
-
If FormattingEnabled is true, SelectedIndex will be set to -1 when SelectedValue is blank.
The following code example shows the SelectedValue returning the value of the property specified by the ValueMember property. This code is an excerpt from the example shown in the ListControl class overview. See ListControl for the whole code listing.
private void ListBox1_SelectedValueChanged(object sender, EventArgs e) { if (ListBox1.SelectedIndex != -1) { textBox1.Text = ListBox1.SelectedValue.ToString(); // If we also wanted to get the displayed text we could use // the SelectedItem item property: // string s = ((USState)ListBox1.SelectedItem).LongName; } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
1 : SelectedValue returns the item (instead of the item's property)
2 : setting SelectedValue to a key value results in a null pointer exception
- 6/30/2011
- fedenic