ExportFormContext

Context required by functions when using an Export Button

TypeScript
export interface ExportFormContext extends
Extends

FormContext

Properties

PropertyDescription
customDestinationCustom Export destination
reportThe exported report
reportDataThe data in the report
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

customDestination

Custom Export destination

TypeScript
customDestination: CustomDestination;
Property Value

CustomDestination

report

The exported report

TypeScript
report: Report;
Property Value

Report

reportData

The data in the report

TypeScript
reportData: ExportResultData;
Property Value

ExportResultData

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any