menu

Blazor

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

    Show / Hide Table of Contents

    Class QueryCellInfoEventArgs<T>

    Provides information about an QueryCellInfo event.

    Inheritance
    System.Object
    GridEventBaseArgs
    QueryCellInfoEventArgs<T>
    Inherited Members
    GridEventBaseArgs.PreventRender
    Namespace: Syncfusion.Blazor.Grids
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class QueryCellInfoEventArgs<T> : GridEventBaseArgs
    Type Parameters
    Name Description
    T

    TValue of grid component.

    Constructors

    QueryCellInfoEventArgs()

    Declaration
    public QueryCellInfoEventArgs()

    Properties

    Cell

    Gets or sets the CellDOM object associated with the grid content cell.

    Declaration
    public CellDOM Cell { get; }
    Property Value
    Type Description
    CellDOM

    The CellDOM object that represents the grid content cell.

    Remarks

    The CellDom properties include:

    • HasChanges: A boolean property that indicates whether the Cell object associated with the grid content cell has changed.
    • ClassList: A property that contains the class list of the grid content cell.
    • Styles: A property that contains the styles of the grid content cell.
    • AttributeList: A property that contains the attribute list of the grid content cell.
    • AddClass: A method to add class names to the class list for the current grid content cell.
    • AddStyle: A method to add styles for the current grid content cell.
    • SetAttribute: A method to set an attribute for the current grid content cell.

    Column

    Gets the corresponding GridColumn associated with the content of the current cell in the grid.

    Declaration
    public GridColumn Column { get; }
    Property Value
    Type Description
    GridColumn

    A GridColumn object that represents the corresponding column associated with the content of the current cell in the grid.

    Data

    Gets the row data associated with the content of the current cell in the grid.

    Declaration
    public T Data { get; }
    Property Value
    Type Description
    T

    A T object that represents the row data associated with the content of the current cell in the grid.

    ForeignKeyData

    Gets the foreign key row data associated with the grid column.

    Declaration
    public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; }
    Property Value
    Type Description
    System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<System.Object>>

    An System.Collections.Generic.IDictionary<, > object that represents the foreign key row data associated with the grid column.

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