menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class ChipSelectedEventArgs<T> - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    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., string or a POCO).

    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 T (default: null).

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved