Class
ComboBoxProperties

Configures a structured document tag as a combo box with a list of selectable items and optional custom text entry.

Definition

Constructors

ComboBoxProperties()

Initializes a new instance of the ComboBoxProperties class.

Declaration

cs-api-definition
public ComboBoxProperties()

Properties

Items

Gets the collection of items available for selection in the combo box.

Declaration

cs-api-definition
public List<ListItem> Items { get; }

Property Value

List<ListItem>

LastValue

Gets or sets the currently displayed text value of the combo box.

Declaration

cs-api-definition
public string LastValue { get; set; }

Property Value

string

SelectedItem

Gets or sets the currently selected item from the combo box list.

Declaration

cs-api-definition
public ListItem SelectedItem { get; set; }

Property Value

ListItem