PreprocessRowDataContext
Context used when pre-processing Import Data
TypeScript
export interface PreprocessRowDataContext<T = Record<string, any>> extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| rowData | T | Data which has been imported |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
rowData
Data which has been imported
TypeScript
rowData: T;Property Value
T
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any