Class ComboBoxProperties
Configures a structured document tag as a combo box with a list of selectable items and optional custom text entry.
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.StructuredDocumentTags
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class ComboBoxProperties : SdtProperties, ISdtProperties
Constructors
ComboBoxProperties()
Properties
Items
Gets the collection of items available for selection in the combo box.
Declaration
public List<ListItem> Items { get; }
Property Value
|
System.Collections.Generic.List<ListItem>
|
LastValue
Gets or sets the currently displayed text value of the combo box.
Declaration
public string LastValue { get; set; }
Property Value
|
System.String
|
SelectedItem
Gets or sets the currently selected item from the combo box list.
Declaration
public ListItem SelectedItem { get; set; }
Property Value
|
ListItem
|