Class CustomValueUpdateEventArgs<TItem>
Provides data for custom value update events in the MultiColumnComboBox component.
Inheritance
System.Object
    CustomValueUpdateEventArgs<TItem>
  Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class CustomValueUpdateEventArgs<TItem> : Object
  Type Parameters
| Name | Description | 
|---|---|
| TItem | The type of the data item.  | 
      
Constructors
CustomValueUpdateEventArgs()
Declaration
public CustomValueUpdateEventArgs()
  Properties
Item
Gets or sets the custom format data for the Value and Text properties.
Declaration
public TItem Item { get; set; }
  Property Value
| Type | Description | 
|---|---|
| TItem | An object representing the custom item.  | 
      
Text
Gets or sets the typed custom text to assign to the Item property.
Declaration
public string Text { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | A string representing the custom text entered by the user.  |