Class ListViewCommandEventArgs
The class that describes the event arguments to the ListView events.
Inheritance
System.Object
ListViewCommandEventArgs
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class ListViewCommandEventArgs : EventArgs
Constructors
ListViewCommandEventArgs()
Declaration
public ListViewCommandEventArgs()
Properties
IsCancelled
Defines whether the command should be cancelled.
Declaration
public bool IsCancelled { get; set; }
Property Value
System.Boolean
|
IsNew
Defines if the data item is recently added by the end user through the Component UI.
Declaration
public bool IsNew { get; set; }
Property Value
System.Boolean
|
Item
Defines the item that has been affected. You can cast it to the model type to which you bind the ListView.
Declaration
public object Item { get; set; }
Property Value
System.Object
|