Class ValueSelectEventArgs<TItem>
Provides data for the OnValueSelect event.
Inheritance
System.Object
ValueSelectEventArgs<TItem>
Namespace: Syncfusion.Blazor.MultiColumnComboBox
Assembly: Syncfusion.Blazor.dll
Syntax
public class ValueSelectEventArgs<TItem> : Object
Type Parameters
Name |
---|
TItem |
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 |
---|---|
System.Boolean | 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 |
---|---|
System.Boolean | 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. |