BulletedList.SelectedValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the Value property of the selected ListItem object in the BulletedList control.
public:
virtual property System::String ^ SelectedValue { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(false)]
public override string SelectedValue { get; set; }
[<System.ComponentModel.Bindable(false)>]
member this.SelectedValue : string with get, set
Public Overrides Property SelectedValue As String
Property Value
The Value of the selected ListItem in the BulletedList; otherwise, an empty string (""), if no item is selected.
- Attributes
Exceptions
An attempt was made to assign a value to the SelectedValue.
Remarks
The SelectedValue property is inherited from the ListControl class and is not applicable to the BulletedList control.
Note
The SelectedValue property is set internally based on the selected list item in the BulletedList control. If you set the SelectedValue property directly, a NotSupportedException exception is thrown.
This property is not bindable in visual designers, but is bindable at runtime. For more information, see BindableAttribute.