devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
39 lines (38 loc) • 1.14 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\internal\_htmlMarkUpConverter.d.ts)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
export interface IDiplayNameParameters {
text: string;
wordWrap?: boolean;
fontSize?: number;
fontUnit?: string;
}
export interface IInheritValues {
fontSize?: number;
backcolor?: boolean;
}
export interface ITag {
node: Element;
element: HTMLElement;
createElement: () => any;
appendTo: (el: HTMLElement) => void;
hasChildNodes: boolean;
setProperties: (parameters?: IDiplayNameParameters, inheritValues?: IInheritValues) => any;
value?: any;
inheritValues: IInheritValues;
}
export declare class ValueConverter {
private _displayNameParameters;
static ValueAttrName: string;
private _regExp;
private _createTag;
private _parceToXml;
private _checkValidTag;
private _createTree;
constructor(_displayNameParameters: IDiplayNameParameters);
appendTo(element: HTMLElement): void;
}