Class QueryCellInfoEventArgs<T>
Defines event argument of query cell 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
Defines the cell element.
Declaration
public CellDOM Cell { get; set; }
Property Value
Type | Description |
---|---|
CellDOM |
ColSpan
Defines the no. of columns to be spanned.
Declaration
public int ColSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Column
Defines the column object associated with this cell.
Declaration
public GridColumn Column { get; set; }
Property Value
Type | Description |
---|---|
GridColumn |
Data
Defines the row data associated with this cell.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
ForeignKeyData
Define the foreignKey row data associated with this column.
Declaration
public IDictionary<string, IEnumerable<object>> ForeignKeyData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Collections.Generic.IEnumerable<System.Object>> |
RequestType
Defines the current action.
Declaration
public string RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RowSpan
Defines the no. of rows to be spanned.
Declaration
public int RowSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |