Class ExcelHeaderQueryCellInfoEventArgs
Provides information about an ExcelHeaderQueryCellInfoEvent event.
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelHeaderQueryCellInfoEventArgs : Object
Constructors
ExcelHeaderQueryCellInfoEventArgs()
Declaration
public ExcelHeaderQueryCellInfoEventArgs()
Properties
Cell
Gets or sets the cell details of the grid.
Declaration
public Cell Cell { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Cell | The cell object that represents the cell details, which contains the following properties:
|
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 GridColumn object that represents the column of the current cell.
Declaration
public GridColumn Column { get; }
Property Value
Type | Description |
---|---|
GridColumn | The grid column that represents the column of the current cell. |
ColumnIndex
Gets the column index of the current cell in the Excel Grid column.
Declaration
public int ColumnIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the column index of the current cell. |
RowIndex
Gets the row index of the current cell in the Excel Grid column.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that represents the row index of the current cell. |
Style
Gets or sets the Syncfusion.ExcelExport.CellStyle object that represents the style of the current cell.
Declaration
public CellStyle Style { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.CellStyle | The cell styles of the current cell. |
Value
Gets or sets the value of the current cell.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An object that represents the value of the current cell. |