devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
25 lines (24 loc) • 1.1 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\controls\xrBarcode.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 { XRControlViewModel, XRControlSurface } from './xrControl';
import { ModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import { ElementViewModel, ISurfaceContext } from '@devexpress/analytics-core/analytics-elements';
import * as ko from 'knockout';
export declare class XRBarCodeViewModel extends XRControlViewModel {
static unitProperties: any[];
createBarcode(model: any, serializer?: any): {
'name': ko.Observable<any>;
'getInfo': () => import("@devexpress/analytics-core/analytics-utils").ISerializationInfoArray;
};
constructor(model: any, parent: ElementViewModel, serializer?: ModelSerializer);
symbology: any;
barcodeFake: any;
}
export declare class XRBarcodeSurface extends XRControlSurface {
constructor(control: XRControlViewModel, context: ISurfaceContext);
}