Class ComboBoxProperties
Represents the properties of a structured document tag of ComboBox type.
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 items associated with this combo box.
Declaration
public List<ListItem> Items { get; }
Property Value
System.Collections.Generic.List<ListItem>
|
LastValue
Gets the content value.
Declaration
public string LastValue { get; set; }
Property Value
System.String
|
SelectedItem
Gets or sets the value that indicates which item is currently selected.
Declaration
public ListItem SelectedItem { get; set; }
Property Value
ListItem
|
Methods
GetBuilder(SdtRangeStart)
Provides a ISdtBuilder that generates the structured document tag's content.
Declaration
protected override ISdtBuilder GetBuilder(SdtRangeStart associatedSdt)
Parameters
SdtRangeStart
associatedSdt
|
Returns
ISdtBuilder
|