Class RowDeletedEventArgs<T>
Provides information about the RowDeleted event.
Inheritance
System.Object
RowDeletedEventArgs<T>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowDeletedEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RowDeletedEventArgs()
Declaration
public RowDeletedEventArgs()
Properties
Datas
Gets the collection of row data intended for deletion.
Declaration
public List<T> Datas { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | A collection of row data to be deleted.
|
Remarks
This collection holds the row data that is marked for deletion, whether it's a single row or multiple rows. Additionally, it holds the deleted row data when the delete operation is performed using the DeleteRecordAsync(String, TValue) method.
PrimaryKeys
Gets the list of the primary key values.
Declaration
public string[] PrimaryKeys { get; }
Property Value
Type | Description |
---|---|
System.String[] | A string array that contains the list of primary key values. |