Class ChipSelectedEventArgs<T>
Event data for the chip selection scenario in Syncfusion MultiSelect or TagBox controls—fired when a chip is selected by user action.
Inheritance
System.Object
ChipSelectedEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChipSelectedEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | The type of the chip's underlying data (e.g., |
Remarks
This event argument provides the full business object backing the selected chip, enabling analytics, custom UI, or chained selection logic.
Examples
void OnChipSelected(ChipSelectedEventArgs<MyType> args) {
// Use args.ChipData for downstream business logic
}
Constructors
ChipSelectedEventArgs()
Declaration
public ChipSelectedEventArgs()
Properties
ChipData
Gets the business object data for the selected chip.
Declaration
public T ChipData { get; }
Property Value
Type | Description |
---|---|
T | The underlying chip data of type |