Class ListBoxChangeEventArgs<TValue, TItem>
Provides the event data for the ValueChange event of the SfListBox<TValue, TItem>
Inheritance
System.Object
ListBoxChangeEventArgs<TValue, TItem>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class ListBoxChangeEventArgs<TValue, TItem> : Object
Type Parameters
Name | Description |
---|---|
TValue | The type of the value parameter. |
TItem | The type of the item parameter. |
Constructors
ListBoxChangeEventArgs()
Declaration
public ListBoxChangeEventArgs()
Properties
Items
Gets the list of items to be bound to the SfListBox<TValue, TItem>
Declaration
public IEnumerable<TItem> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TItem> | An |
Value
Gets the values of the list items which are selected by mouse or keyboard or checkbox in the SfListBox<TValue, TItem>.
Declaration
public TValue Value { get; set; }
Property Value
Type | Description |
---|---|
TValue | A |