BaseExportContext

Context information available in all Export-related functions

TypeScript
export interface BaseExportContext extends
Extends

BaseContext

Properties

PropertyDescription
exportDestinationExport Destination for the Report
reportThe Report Configuration being run
reportFormatFormat of the Report being run
reportNameName of the Report being run
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

exportDestination

Export Destination for the Report

TypeScript
exportDestination?: ExportDestinationType;
Property Value

ExportDestinationType

report

The Report Configuration being run

TypeScript
report: Report;
Property Value

Report

reportFormat

Format of the Report being run

TypeScript
reportFormat: ReportFormatType;
Property Value

ReportFormatType

reportName

Name of the Report being run

TypeScript
reportName: ReportNameType;
Property Value

ReportNameType

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any