Class CustomValueSpecifierEventArgs<T>
Provides event data when a ComboBox allows a user to specify a custom value not present in the suggestion list. Used with custom value creation in ComboBox.
Inheritance
System.Object
CustomValueSpecifierEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class CustomValueSpecifierEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The data type of the custom item being created. |
Constructors
CustomValueSpecifierEventArgs()
Declaration
public CustomValueSpecifierEventArgs()
Properties
Item
Gets or sets the data object or custom format assigned to the ComboBox item when created as a custom value.
Declaration
public T Item { get; set; }
Property Value
Type | Description |
---|---|
T | The custom data of type |
Text
Gets or sets the custom text entered by the user that is being used to create a ComboBox item.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | The specified text as a |