CustomCellSummaryOperationContext
Context provided to a custom Cell Summary Operation function
TypeScript
export interface CustomCellSummaryOperationContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| selectedCellInfo | Currently selected cells |
| selectedColumn | Currently selected Column |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
selectedCellInfo
Currently selected cells
TypeScript
selectedCellInfo: SelectedCellInfo<TData>;Property Value
SelectedCellInfo<TData>
selectedColumn
Currently selected Column
TypeScript
selectedColumn: AdaptableColumn;Property Value
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any