UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

27 lines (26 loc) 1.18 kB
/** * DevExpress HTML/JS Reporting (viewer\binding\jsReportViewer.d.ts) * Version: 25.1.3 * Build date: Jun 26, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { PreviewDisposableModel } from '../internal/_previewModel'; import { JSReportViewerBase } from './jsReportViewerBase'; import { ReportHolder } from '../reportHolder'; import { DxPromise } from '@devexpress/analytics-core/analytics-internal-native'; import { IDocumentOperationResult } from '../utils/utils'; export declare class JSReportViewer extends JSReportViewerBase<PreviewDisposableModel> { previewModel: PreviewDisposableModel; GetReportPreview(): ReportHolder; PerformCustomDocumentOperation(customData: string, hideMessageFromUser: boolean): DxPromise<IDocumentOperationResult>; Print(pageIndex?: number): void; ExportTo(format: string, inlineResult?: boolean): void; GetCurrentPageIndex(): number; GoToPage(pageIndex: number): void; StartBuild(): void; UpdateLocalization(localization: { [key: string]: string; }): void; AdjustControlCore(): void; }