[]
Ƭ Environment: Object
Report environment used for expressions calculation.
| Name | Type | Description |
|---|---|---|
ReportFolder? |
string |
Report directory name |
ReportName? |
string |
Report name |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:282
Ƭ NoValueType: typeof noValue
Defines special value to indicate that value is not set.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:137
Ƭ Parameter: Object
Defines report parameter
| Name | Type | Description |
|---|---|---|
descriptor |
ParameterDescriptorEx |
Parameter descriptor |
errorMessage |
string |
Shows error message for invalid parameter values |
isValidValuesLoaded |
boolean |
true if valid values list was loaded |
validValues |
ParameterValue[] |
Valid values |
values |
ParameterVariant[] |
Parameter values |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:355
Ƭ ParameterDataType: "Boolean" | "String" | "Integer" | "Float" | "Date" | "DateTime"
Defines parameter data type.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:131
Ƭ ParameterDescriptor: Object
Defines report parameter descriptor
| Name | Type | Description |
|---|---|---|
allowBlank |
boolean |
Allow blank |
dataType |
ParameterDataType |
Parameter data type |
dependsOn |
string[] |
Parameters on which parameter depends |
multiValue |
boolean |
Parameter is multivalue |
name |
string |
Parameter name |
nullable |
boolean |
Allow null |
selectAllValue? |
any |
For multivalue parameter special value to indicate that all available values are selected |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:157
Ƭ ParameterDescriptorConfig: Object
Parameter visual presentation settings.
| Name | Type | Description |
|---|---|---|
hidden |
boolean |
Indicates that parameter is hidden. Hidden parameters are not visible in parameter panel. |
multiline |
boolean |
Multiline. |
prompt |
string |
Parameter value prompt. |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:346
Ƭ ParameterDescriptorEx: ParameterDescriptor & ParameterDescriptorConfig
Parameter descriptor.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:342
Ƭ ParameterValue: Object
Defines parameter value
| Name | Type | Description |
|---|---|---|
fields? |
any[] |
Additional fields for extended parameter view |
label |
string |
Label to display |
value |
ParameterVariant |
Value |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:148
Ƭ ParameterVariant: string | number | boolean | Date | null | NoValueType | SelectAllType
Type of parameter value
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:144
Ƭ RDLReportDefinition: Report
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:572
Ƭ RenderOptions: Object
Document render options
| Name | Type | Description |
|---|---|---|
galleyMode |
boolean |
Renders document without splitting the big content to pages. |
interactivityActions |
({ Data: string ; Type: "toggle" } | { Data: string ; Type: "sort" })[] |
Holds sorts/toggles state of the document. |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:210
Ƭ ReportParameters: Object
Defines report parameters
▪ [name: string]: Parameter
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:368
Ƭ ResourceLocator: Object
Provide tools for accessing external resources by URIs.
| Name | Type |
|---|---|
fork |
(reportName: string) => ResourceLocator |
getResource |
<T>(uri: string) => Promise<null | T> |
getResourceUri |
(resourceID: string) => string |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:113
Ƭ SelectAllType: Object
Defines special value for multivalue parameter to indicate that all values are set.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:139
Ƭ ValidationResult: Object
Parameter validation result
| Name | Type | Description |
|---|---|---|
isValid |
boolean |
Indicates whether validation success or not. |
message? |
string |
The error text in case of validation fails. |
value? |
any |
New validated parameter value. |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:326
Ƭ ValidationResults: Object
Parameters validation result
▪ [parameter: string]: ValidationResult
Dictionary with validation results per parameter
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:321
• FontStore: Object
Provides tools for registering fonts in CSS and pdf export.
| Name | Type |
|---|---|
registerFonts |
(...fonts: FontDescriptor[]) => Promise<void> & (configUri: string) => Promise<void> |
getFonts |
() => FontDescriptor[] |
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:522
• noValue: undefined
Special value to indicate that value is not set.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:135
• selectAll: SelectAllType
Special value for multivalue parameter to indicate that all values are set.
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:133
▸ registerFont(...fonts): Promise<void>
deprecated Use FontStore.registerFonts instead
Registers and loads user-specified fonts
| Name | Type | Description |
|---|---|---|
...fonts |
FontDescriptor[] |
Set of font descriptors to be registered |
Promise<void>
Promise that will be resolved when all fonts are loaded and ready for render
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:518
▸ setLicenseKey(key): void
Set ARJS license key
| Name | Type | Description |
|---|---|---|
key |
string |
license key value |
void
node_modules/@grapecity/ar-js-pagereport/lib/ar-js-core.d.ts:469