Class MultiSelectChangeEventArgs<T>
Defines the MultiSelect change event.
Inheritance
System.Object
MultiSelectChangeEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class MultiSelectChangeEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | Specifies the MultiSelectChangeEventArgs. |
Constructors
MultiSelectChangeEventArgs()
Declaration
public MultiSelectChangeEventArgs()
Properties
E
Gets or sets the original event arguments.
Declaration
public object E { get; set; }
Property Value
Type |
---|
System.Object |
Element
Gets or sets the selected list item element.
Declaration
public DOM Element { get; set; }
Property Value
Type |
---|
DOM |
IsInteracted
Gets or sets a value indicating whether the event was triggered by user interaction.
Declaration
public bool IsInteracted { get; }
Property Value
Type | Description |
---|---|
System.Boolean | System.Boolean |
OldValue
Gets or sets the initial value of the component.
Declaration
public T OldValue { get; }
Property Value
Type |
---|
T |
Value
Gets or sets the updated value of the component.
Declaration
public T Value { get; }
Property Value
Type |
---|
T |