Class ExcelAggregateEventArgs
Defines event argument of excel aggregate event.
Inheritance
System.Object
ExcelAggregateEventArgs
Implements
System.IEquatable<ExcelAggregateEventArgs>
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelAggregateEventArgs : Object, IEquatable<ExcelAggregateEventArgs>
Constructors
ExcelAggregateEventArgs()
Declaration
public ExcelAggregateEventArgs()
Properties
Cell
Defines the cell data
Declaration
public Cell Cell { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Cell |
Column
Defines the aggregate column of the current cell.
Declaration
public GridAggregateColumn Column { get; set; }
Property Value
Type | Description |
---|---|
GridAggregateColumn |
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(ExcelAggregateEventArgs)
Declaration
public bool Equals(ExcelAggregateEventArgs aggregateExportEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ExcelAggregateEventArgs | aggregateExportEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>