Class ExcelQueryCellInfoEventArgs<T>
Defines event argument of excel query cell event.
Inheritance
System.Object
ExcelQueryCellInfoEventArgs<T>
Implements
System.IEquatable<ExcelQueryCellInfoEventArgs<T>>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelQueryCellInfoEventArgs<T> : Object, IEquatable<ExcelQueryCellInfoEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T | TValue of grid component |
Constructors
ExcelQueryCellInfoEventArgs()
Declaration
public ExcelQueryCellInfoEventArgs()
Properties
Cell
Defines the cell data
Declaration
public Cell Cell { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Cell |
ColSpan
Defines the number of columns to be spanned
Declaration
public int ColSpan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Column
Defines the column of the current cell.
Declaration
public GridColumn Column { get; set; }
Property Value
Type | Description |
---|---|
GridColumn |
ColumnIndex
Defines the current cell column index of the Excel Grid column
Declaration
public int ColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Data
Defines the row data associated with this cell.
Declaration
public T Data { get; set; }
Property Value
Type | Description |
---|---|
T |
RowIndex
Defines the current cell row index of the Excel Grid column
Declaration
public int RowIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Style
Defines the style of the current cell.
Declaration
public CellStyle Style { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.CellStyle |
Value
Defines the value of the current cell.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
Equals(ExcelQueryCellInfoEventArgs<T>)
Declaration
public bool Equals(ExcelQueryCellInfoEventArgs<T> excelQueryCellInfoEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ExcelQueryCellInfoEventArgs<T> | excelQueryCellInfoEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>