devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
26 lines (25 loc) • 1.12 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\controls\properties\style.d.ts)
* Version: 26.1.3
* Build date: Jun 16, 2026
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { PaddingModel } from '@devexpress/analytics-core/analytics-elements';
import { Disposable, IModelSerializer, ISerializationInfoArray } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
import { XRReportElementViewModel } from '../xrReportelement';
export declare class StyleModel extends Disposable {
parent: XRReportElementViewModel;
static unitProperties: string[];
getInfo(): ISerializationInfoArray;
constructor(model: any, parent: XRReportElementViewModel, serializer?: IModelSerializer);
dpi: ko.Observable<number> | ko.Computed<number>;
isPropertyModified(name: any): boolean;
className: () => string;
displayType(): any;
name: ko.Observable<string> | ko.Computed<string>;
paddingObj: PaddingModel;
padding: ko.Observable<string>;
controlType: string;
}