UNPKG

devexpress-reporting

Version:

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

16 lines (15 loc) 1.05 kB
/** * DevExpress HTML/JS Reporting (viewer\internal\_sizeUtils.d.ts) * Version: 24.2.6 * Build date: Mar 18, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { IElementPosition } from './_progressViewModel'; import { ZoomAutoBy } from '../constants'; import { IJQueryWrapper } from '@devexpress/analytics-core/analytics-internal-native'; import { ReportPreview } from '../reportPreview'; export declare function stringToPosition(position: string): IElementPosition; export declare function getDockedElementCallback($targetElement: IJQueryWrapper, $viewer: IJQueryWrapper, $window: Window, selector: string, position?: IElementPosition): (element: Element) => void; export declare function updatePreviewContentSize(reportPreview: ReportPreview, root: HTMLElement, rtl?: boolean): (position: string) => void; export declare function updatePreviewZoomWithAutoFit(width: number, height: number, element: HTMLElement, autoFitBy?: ZoomAutoBy): number;