Class ChipListRemoveEventArgs
The class that describes the event arguments of the OnChipRemove event of the ChipList.
Inheritance
System.Object
ChipListRemoveEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class ChipListRemoveEventArgs : Object
Constructors
ChipListRemoveEventArgs()
Declaration
public ChipListRemoveEventArgs()
Properties
IsCancelled
Defines whether the event is canceled and the built-in action prevented.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
Item
Defines the item associated with the removed chip.
Declaration
public object Item { get; set; }
Property Value
System.Object
|