Class QueryCellInfoEventArgs<T>
Provides information about an QueryCellInfo event.
Inherited Members
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.
ColSpan
Gets the column span of the current cell.
Declaration
public int ColSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the number of columns spanned by the current 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 |
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. |
RequestType
Defines the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type |
---|
System.String |
RowSpan
Gets the row span of the current cell.
Declaration
public int RowSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the number of row spanned by the current cell. |