Class ValueSelectEventArgs<TItem>
Provides data for value selection events in the MultiColumnComboBox component.
Inherited Members
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class ValueSelectEventArgs<TItem>
Type Parameters
| Name | Description |
|---|---|
| TItem | The type of the data item. |
Constructors
ValueSelectEventArgs()
Declaration
public ValueSelectEventArgs()
Properties
Cancel
Gets or sets whether the current action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | A boolean value indicating whether the selection 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 |
|---|---|
| bool | Returns |
ItemData
Gets the selected item as a JSON object from the data source.
Declaration
public TItem ItemData { get; set; }
Property Value
| Type | Description |
|---|---|
| TItem | The selected item data. |