Class SelectionChangedEventArgs
Provides information about the SelectionChanged event call back.
Inheritance
System.Object
SelectionChangedEventArgs
Namespace: Syncfusion.Blazor.Buttons
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectionChangedEventArgs : Object
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 |
---|---|
System.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 |
---|---|
System.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.