A Report which can export data from AdapTable
TypeScript
export interface Report extendsExtends
Properties
| Property | Description |
|---|---|
| Name | Name of the Report as displayed in the Export toolbar and tool panel |
| Query | Query to use; only required if ReportRowScope is 'ExpressionRows' |
| ReportColumnScope | Columns to display: AllColumns, VisibleColumns, SelectedColumns, ScopeColumns |
| ReportRowScope | Rows to export: AllRows, VisibleRows, SelectedRows, ExpressionRows |
| Scope | Columns Scope; only required if ReportColumnScope is 'ScopeColumns' |
| IsReadOnly | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') |
Property Details
Name
Name of the Report as displayed in the Export toolbar and tool panel
TypeScript
Name: ReportNameType;Property Value
Query
Query to use; only required if ReportRowScope is 'ExpressionRows'
TypeScript
Query?: AdaptableBooleanQuery;Property Value
ReportColumnScope
Columns to display: AllColumns, VisibleColumns, SelectedColumns, ScopeColumns
TypeScript
ReportColumnScope: ReportColumnScope;Property Value
ReportRowScope
Rows to export: AllRows, VisibleRows, SelectedRows, ExpressionRows
TypeScript
ReportRowScope: ReportRowScope;Property Value
Scope
Columns Scope; only required if ReportColumnScope is 'ScopeColumns'
TypeScript
Scope?: ColumnScope;Property Value
IsReadOnly
Inherited from AdaptableObject
Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
TypeScript
IsReadOnly?: boolean;Property Value
boolean