Class SelectAllEventArgs<T>
Defines the select all event.
Inheritance
System.Object
SelectAllEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class SelectAllEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the type of SelectAllEventArgs. |
Constructors
SelectAllEventArgs()
Declaration
public SelectAllEventArgs()
Properties
Event
Gets or sets the original event arguments.
Declaration
public object Event { get; set; }
Property Value
Type |
---|
System.Object |
IsChecked
Gets or sets a value indicating whether the item is selected or deselected.
Declaration
public bool IsChecked { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
IsInteracted
Gets or sets a value indicating whether the event is triggered by interaction.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
ItemData
Gets or sets the selected items as JSON Object from the data source.
Declaration
public IEnumerable<T> ItemData { get; }
Property Value
Type |
---|
System.Collections.Generic.IEnumerable<T> |
Items
Gets or sets the list of selected item elements.
Declaration
public List<DOM> Items { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<DOM> |