UNPKG

devexpress-reporting

Version:

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

29 lines (28 loc) 2.32 kB
/** * DevExpress HTML/JS Reporting (designer\internal\dragdrop\_utils.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 */ /// <reference types="jquery" /> import { IElementViewModel, ISize } from '@devexpress/analytics-core/analytics-elements'; import { ISelectionTarget } from '@devexpress/analytics-core/analytics-internal'; import { IDataMemberInfo, PathRequest } from '@devexpress/analytics-core/analytics-utils'; import { ITreeListItemViewModel, TreeListItemViewModel } from '@devexpress/analytics-core/analytics-widgets-internal'; import { BandSurface } from '../../bands/xrBand'; import { VerticalBandSurface } from '../../bands/xrVerticalBand'; import { ReportSurface } from '../../controls/xrReport'; import { XRReportElementViewModel } from '../../controls/xrReportelement'; import { DataBindingMode } from '../_dataBindingMode'; export declare function selectTreeListItem(item: ITreeListItemViewModel, event: JQueryEventObject): void; export declare function getClosestDataMember(control: XRReportElementViewModel): string; export declare function getExpressionPath(container: XRReportElementViewModel, pathRequest: string | PathRequest): string; export declare function getFirstSurfaceParentByType(target: ISelectionTarget, checkBandsType: (target: ISelectionTarget) => boolean): ISelectionTarget; export declare function getUsefulReportWidth(surface?: ReportSurface): ISize; export declare function createPictureBox(container: XRReportElementViewModel, bindingPath: string, dataBindingMode: string): XRReportElementViewModel; export declare const _checkBandsType: (target: BandSurface | VerticalBandSurface) => boolean; export declare function createSimpleControl(controlType: string, dropTargetControl: XRReportElementViewModel): XRReportElementViewModel; export declare function assignBinding(control: XRReportElementViewModel, container: XRReportElementViewModel, bindingName: string, item: TreeListItemViewModel, dataBindingMode: DataBindingMode): XRReportElementViewModel; export declare function isList(data: IDataMemberInfo): boolean; export declare function dragDropComponentAdded(model: IElementViewModel<string>, parent: IElementViewModel<string>): void;