Class RowCreatedEventArgs<T>
Provides information about the RowCreated event.
Inheritance
System.Object
RowCreatedEventArgs<T>
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowCreatedEventArgs<T> : GridEventBaseArgs
Type Parameters
Name | Description |
---|---|
T | TValue of the grid component. |
Constructors
RowCreatedEventArgs()
Declaration
public RowCreatedEventArgs()
Properties
Data
Gets or sets the data of the new row associated with the adding action.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T | A |
EditContext
Gets the current EditContext instance.
Declaration
public EditContext EditContext { get; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.Forms.EditContext | An instance of the EditContext class that represents the current edit context. By default, the value is null. |
Index
Gets or sets the index of the row associated with the adding action.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer representing the index of the newly added row. The default value is 0. |
Remarks
If the index property is set, then the add form will be generated in the grid based on the specified index.