UNPKG

devexpress-reporting

Version:

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

12 lines (11 loc) 1.27 kB
/** * DevExpress HTML/JS Reporting (designer\controls\utils\_controlTypes.d.ts) * Version: 25.2.3 * Build date: Dec 15, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ export type ReportBandsType = 'TopMarginBand' | 'ReportHeaderBand' | 'PageHeaderBand' | 'GroupHeaderBand' | 'DetailBand' | 'VerticalHeaderBand' | 'VerticalDetailBand' | 'VerticalTotalBand' | 'DetailReportBand' | 'GroupFooterBand' | 'ReportFooterBand' | 'PageFooterBand' | 'BottomMarginBand' | 'SubBand'; export type ControlType = ReportBandsType | 'Unknown' | 'XRLabel' | 'XRCheckBox' | 'XRRichText' | 'XRPictureBox' | 'XRPanel' | 'XRTable' | 'XRCharacterComb' | 'XRLine' | 'XRShape' | 'XRBarCode' | 'XRZipCode' | 'XRChart' | 'XRGauge' | 'XRSparkline' | 'XRPivotGrid' | 'XRCrossTab' | 'XRCrossTabCell' | 'XRSubreport' | 'XRPdfContent' | 'XRPdfSignature' | 'XRTableOfContents' | 'XRPageInfo' | 'XRPageBreak' | 'XRCrossBandLine' | 'XRCrossBandBox' | 'DevExpress.XtraReports.UI.XtraReport' | 'PivotGridField' | 'XRTableRow' | 'XRTableCell' | 'SubBand' | string; export declare function isVerticalBand(type: ControlType | ReportBandsType): boolean; export declare function isBand(type: ControlType): boolean;