BaseExportContext

Context information available in all Export-related functions

TypeScript
export interface BaseExportContext extends
Extends

BaseContext

Properties

PropertyTypeDescription
exportDestinationExportDestinationTypeExport Destination for the Report
reportReportThe Report Configuration being run
reportFormatReportFormatTypeFormat of the Report being run
reportNameReportNameTypeName of the Report being run
adaptableContextanyCustom 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