devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
37 lines (36 loc) • 888 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\internal\labelWizardUtils.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
*/
import { GraphicsUnit } from '../reportWizardState';
export interface ILabelProduct {
id: number;
name: string;
}
export interface IPaperKind {
id: number;
enumId: number;
name: string;
width: number;
height: number;
isRollPaper: boolean;
unit: GraphicsUnit;
}
export interface ILabelDetails {
id: number;
productId: number;
paperKindId: number;
name: string;
width: number;
height: number;
hPitch: number;
vPitch: number;
topMargin: number;
leftMargin: number;
rightMargin: number;
bottomMargin: number;
unit: GraphicsUnit;
}