BulletedList.SelectedItem 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 the currently selected item in a BulletedList control.
public:
virtual property System::Web::UI::WebControls::ListItem ^ SelectedItem { System::Web::UI::WebControls::ListItem ^ get(); };
public override System.Web.UI.WebControls.ListItem SelectedItem { get; }
member this.SelectedItem : System.Web.UI.WebControls.ListItem
Public Overrides ReadOnly Property SelectedItem As ListItem
Property Value
null
.
Remarks
In the base class, ListControl, the SelectedItem property returns a ListItem object that represents the currently selected item in a BulletedList control. The default is null
. The SelectedItem property is not applicable to the BulletedList control.
Note
If you use the get
accessor for the SelectedItem property to return the selected item for a BulletedList control, it always returns null
.
Use the event data of the BulletedListEventArgs class to determine the index of the link button in a BulletedList that was clicked.