CustomCellSummaryOperationContext

Context provided to a custom Cell Summary Operation function

TypeScript
export interface CustomCellSummaryOperationContext<TData = any> extends
Extends

BaseContext

Properties

PropertyDescription
selectedCellInfoCurrently selected cells
selectedColumnCurrently selected Column
adaptableContextCustom 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

AdaptableColumn

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any