Class EditCanceledEventArgs<T>
Provides information about the EditCanceled event.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class EditCanceledEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
EditCanceledEventArgs()
Declaration
public EditCanceledEventArgs()
Properties
Data
Gets the data of the grid which is associated with canceling action.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | A |
Index
Gets the row index of the row associated with canceling action.
Declaration
public int Index { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The row index of the canceling row. By default, the value is 0. |
Remarks
The value of this property can be used to identify which row in a collection or data source is being canceled.
PreviousData
Gets the previous data of the row.
Declaration
public T PreviousData { get; }
Property Value
Type | Description |
---|---|
T | An object of type T that contains the previous data of the row. By default, the value is null. |
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. |