Class RemoveEventArgs<T>
Defines the remove event.
Inheritance
System.Object
RemoveEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class RemoveEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the RemoveEventArgs. |
Constructors
RemoveEventArgs()
Declaration
public RemoveEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the current action needs to be prevented 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; set; }
Property Value
Type |
---|
System.Object |
IsInteracted
Gets or sets a value indicating whether the event is triggered by interaction or not.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
Item
Gets or sets the selected list item element.
Declaration
public DOM Item { get; set; }
Property Value
Type |
---|
DOM |
ItemData
Gets or sets the selected item as a JSON object from the data source.
Declaration
public T ItemData { get; }
Property Value
Type |
---|
T |