Class SelectedData<TItem>
Represents selected data in the dropdown.
Inheritance
System.Object
SelectedData<TItem>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectedData<TItem> : Object
Type Parameters
Name | Description |
---|---|
TItem | The type of the item data. |
Constructors
SelectedData()
Declaration
public SelectedData()
Properties
ChipClass
Gets or sets the CSS class for the chip representation.
Declaration
public string ChipClass { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the chip CSS class. The default value is "e-chips". |
ItemData
Gets or sets the data item for the selection.
Declaration
public TItem ItemData { get; set; }
Property Value
Type | Description |
---|---|
TItem | A |
Text
Gets or sets the text of the selected item.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the display text. The default value is |
Value
Gets or sets the value of the selected item.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object representing the item value. The default value is |