menu

Blazor

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

    Show / Hide Table of Contents

    Class RowDeletedEventArgs<T>

    Provides information about the RowDeleted event.

    Inheritance
    System.Object
    GridEventBaseArgs
    RowDeletedEventArgs<T>
    GanttRowDeletedEventArgs<T>
    RowDeletingEventArgs<T>
    Inherited Members
    GridEventBaseArgs.PreventRender
    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. T object representing the data of the grid.

    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.

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