A Report which can export data from AdapTable

TypeScript
export interface Report extends
Extends

AdaptableObject

Properties

PropertyDescription
NameName of the Report as displayed in the Export toolbar and tool panel
QueryQuery to use; only required if ReportRowScope is 'ExpressionRows'
ReportColumnScopeColumns to display: AllColumns, VisibleColumns, SelectedColumns, ScopeColumns
ReportRowScopeRows to export: AllRows, VisibleRows, SelectedRows, ExpressionRows
ScopeColumns Scope; only required if ReportColumnScope is 'ScopeColumns'
IsReadOnlySets 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

ReportNameType

Query

Query to use; only required if ReportRowScope is 'ExpressionRows'

TypeScript
Query?: AdaptableBooleanQuery;
Property Value

AdaptableBooleanQuery

ReportColumnScope

Columns to display: AllColumns, VisibleColumns, SelectedColumns, ScopeColumns

TypeScript
ReportColumnScope: ReportColumnScope;
Property Value

ReportColumnScope

ReportRowScope

Rows to export: AllRows, VisibleRows, SelectedRows, ExpressionRows

TypeScript
ReportRowScope: ReportRowScope;
Property Value

ReportRowScope

Scope

Columns Scope; only required if ReportColumnScope is 'ScopeColumns'

TypeScript
Scope?: ColumnScope;
Property Value

ColumnScope

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean