CustomCellSummaryOperationContext
Context provided to a custom Cell Summary Operation function
TypeScript
export interface CustomCellSummaryOperationContext<TData = any> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| selectedCellInfo | SelectedCellInfo<TData> | Currently selected cells |
| selectedColumn | AdaptableColumn | Currently selected Column |
| adaptableContext | any | 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