Class ListItem
Defines a selectable option in a combo box or drop-down list content control, pairing a display label with an underlying value.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Flow.Model.StructuredDocumentTags
Assembly: Telerik.Windows.Documents.Flow.dll
Syntax
public class ListItem
Constructors
ListItem()
Initializes a new instance of the ListItem class with empty display text and value.
Declaration
public ListItem()
Properties
DisplayText
Gets or sets the text displayed to the user when this item appears in the list.
Declaration
public string DisplayText { get; set; }
Property Value
|
System.String
|
Value
Gets or sets the underlying value stored when this item is selected, typically used for data binding or programmatic access.
Declaration
public string Value { get; set; }
Property Value
|
System.String
|