Class MultiSelectChangeEventArgs<T>
Inheritance
System.Object
MultiSelectChangeEventArgs<T>
Namespace: Syncfusion.Blazor.DropDowns
Assembly: Syncfusion.Blazor.dll
Syntax
public class MultiSelectChangeEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T |
Constructors
MultiSelectChangeEventArgs()
Declaration
public MultiSelectChangeEventArgs()
Properties
E
Specifies the original event arguments.
Declaration
public object E { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Element
Returns the root element of the component.
Declaration
public DOM Element { get; set; }
Property Value
Type | Description |
---|---|
DOM |
IsInteracted
If the event is triggered by interaction, it returns true. Otherwise, it returns false.
Declaration
public bool IsInteracted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
OldValue
Returns the component initial Value.
Declaration
public T OldValue { get; set; }
Property Value
Type | Description |
---|---|
T |
Value
Returns the updated component Values.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |