Class SelectionChangedEventArgs
Provides information about the SelectionChanged event call back.
Inherited Members
Namespace: Syncfusion.Blazor.Buttons
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectionChangedEventArgs
Constructors
SelectionChangedEventArgs()
Declaration
public SelectionChangedEventArgs()
Properties
AddedItems
Gets an array that contains the chip item's value that were selected.
Declaration
public string[] AddedItems { get; }
Property Value
| Type | Description |
|---|---|
| string[] | An array of strings representing the selected chip items' values. |
Remarks
This property is read-only and is set by the control internally during the event call back.
RemovedItems
Gets an array that contains the chip item's value that were unselected.
Declaration
public string[] RemovedItems { get; }
Property Value
| Type | Description |
|---|---|
| string[] | An array of strings representing the unselected chip items' values. |
Remarks
This property is read-only and is set by the control internally during the event call back.