devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
30 lines (29 loc) • 934 B
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\wizard\internal\_commonRequestModel.d.ts)
* Version: 20.2.13
* Build date: Apr 10, 2023
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { GraphicsUnit, IReportWizardState } from '../reportWizardState';
export interface ICustomLabelInformation {
Height: number;
HorizontalPitch: number;
LeftMargin: number;
RightMargin: number;
PaperKindDataId: number;
TopMargin: number;
BottomMargin: number;
Unit: GraphicsUnit;
VerticalPitch: number;
Width: number;
}
export declare class CommonRequestModel {
CustomLabelInformation: ICustomLabelInformation;
IgnoreNullValuesForSummary: boolean;
LabelProductId: number;
LabelProductDetailId: number;
ReportTitle: string;
ReportType: number;
constructor(state: IReportWizardState);
}