Class SelectEventArgs<T>
Provides information about an OnValueSelect event being raised.
Inheritance
System.Object
SelectEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | TItem value of the dropdown list component. |
Constructors
SelectEventArgs()
Declaration
public SelectEventArgs()
Properties
Cancel
Gets or sets the whether the item selection action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
E
Gets or sets the original event arguments.
Declaration
public object E { get; }
Property Value
Type |
---|
System.Object |
IsInteracted
Gets a value indicating whether the event was triggered by user interaction.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
Item
Gets or sets the selected list item elemnt.
Declaration
public DOM Item { get; }
Property Value
Type |
---|
DOM |
ItemData
Gets or sets the selected item as JSON Object from the data source.
Declaration
public T ItemData { get; }
Property Value
Type |
---|
T |