SelectListItem Class
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.
Represents an item in a SelectList or MultiSelectList.
This class is typically rendered as an HTML <option>
element with the specified
attribute values.
public ref class SelectListItem
public class SelectListItem
type SelectListItem = class
Public Class SelectListItem
- Inheritance
-
SelectListItem
Constructors
SelectListItem() |
Initializes a new instance of SelectListItem. |
SelectListItem(String, String, Boolean, Boolean) |
Initializes a new instance of SelectListItem. |
SelectListItem(String, String, Boolean) |
Initializes a new instance of SelectListItem. |
SelectListItem(String, String) |
Initializes a new instance of SelectListItem. |
Properties
Disabled |
Gets or sets a value that indicates whether this SelectListItem is disabled.
This property is typically rendered as a |
Group |
Represents the optgroup HTML element this item is wrapped into. In a select list, multiple groups with the same name are supported. They are compared with reference equality. |
Selected |
Gets or sets a value that indicates whether this SelectListItem is selected.
This property is typically rendered as a |
Text |
Gets or sets a value that indicates the display text of this SelectListItem.
This property is typically rendered as the inner HTML in the HTML |
Value |
Gets or sets a value that indicates the value of this SelectListItem.
This property is typically rendered as a |