BaseExportContext
Context information available in all Export-related functions
TypeScript
export interface BaseExportContext extendsExtends
Properties
| Property | Description |
|---|---|
| exportDestination | Export Destination for the Report |
| report | The Report Configuration being run |
| reportFormat | Format of the Report being run |
| reportName | Name of the Report being run |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
exportDestination
Export Destination for the Report
TypeScript
exportDestination?: ExportDestinationType;Property Value
report
The Report Configuration being run
TypeScript
report: Report;Property Value
reportFormat
Format of the Report being run
TypeScript
reportFormat: ReportFormatType;Property Value
reportName
Name of the Report being run
TypeScript
reportName: ReportNameType;Property Value
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any