Class ExcelHeaderQueryCellInfoEventArgs
Defines event argument of excel header query cell event.
Inheritance
System.Object
ExcelHeaderQueryCellInfoEventArgs
Implements
System.IEquatable<ExcelHeaderQueryCellInfoEventArgs>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelHeaderQueryCellInfoEventArgs : Object, IEquatable<ExcelHeaderQueryCellInfoEventArgs>
Constructors
ExcelHeaderQueryCellInfoEventArgs()
Declaration
public ExcelHeaderQueryCellInfoEventArgs()
Properties
Cell
Defines the cell that contains colspan.
Declaration
public Cell Cell { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Cell |
Colspan
Defines the style of the current cell.
Declaration
public int Colspan { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Column
Defines the Grid cell instance
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 |
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(ExcelHeaderQueryCellInfoEventArgs)
Declaration
public bool Equals(ExcelHeaderQueryCellInfoEventArgs excelHeaderQueryCellInfoEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ExcelHeaderQueryCellInfoEventArgs | excelHeaderQueryCellInfoEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>