menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class RowCreatedEventArgs<T> - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class RowCreatedEventArgs<T>

    Provides information about the RowCreated event.

    Inheritance
    System.Object
    GridEventBaseArgs
    RowCreatedEventArgs<T>
    GanttRowCreatedEventArgs<T>
    RowCreatingEventArgs<T>
    Inherited Members
    GridEventBaseArgs.PreventRender
    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 T object representing the data of the grid.

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved