devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
22 lines (21 loc) • 1.08 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\controls\xrPdfContent.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 { ElementViewModel, ISurfaceContext } from '@devexpress/analytics-core/analytics-elements';
import { IModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
export declare class XRPdfContentViewModel extends XRControlViewModel {
constructor(model: any, parent: ElementViewModel, serializer?: IModelSerializer);
_getExpressionNameByPropertyName(propertyName: string): string;
source: ko.Observable<string> | ko.Computed<string>;
sourceUrl: ko.Observable<string> | ko.Computed<string>;
}
export declare class XRPdfContentSurface extends XRControlSurface {
constructor(control: XRPdfContentViewModel, context: ISurfaceContext);
getResizableOptions(resizeHandler: any): any;
}