Class ValueChangeEventArgs<TValue, TItem>
Provides data for value change events in the MultiColumnComboBox component.
Inheritance
System.Object
    ValueChangeEventArgs<TValue, TItem>
  Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class ValueChangeEventArgs<TValue, TItem> : Object
  Type Parameters
| Name | Description | 
|---|---|
| TValue | The type of the component value.  | 
      
| TItem | The type of the data item.  | 
      
Constructors
ValueChangeEventArgs()
Declaration
public ValueChangeEventArgs()
  Properties
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | A boolean value indicating whether the value change action should be canceled. The default value is   | 
      
IsInteracted
Gets a value indicating whether the event was triggered by user interaction.
Declaration
public bool IsInteracted { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Boolean | Returns   | 
      
ItemData
Gets the currently selected item as a JSON object from the data source.
Declaration
public TItem ItemData { get; set; }
  Property Value
| Type | Description | 
|---|---|
| TItem | The currently selected item data.  | 
      
PreviousItemData
Gets the previously selected item as a JSON object from the data source.
Declaration
public TItem PreviousItemData { get; set; }
  Property Value
| Type | Description | 
|---|---|
| TItem | The previously selected item data.  | 
      
Value
Gets or sets the selected value.
Declaration
public TValue Value { get; set; }
  Property Value
| Type | Description | 
|---|---|
| TValue | The currently selected value.  |