UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

22 lines (21 loc) 1.11 kB
/** * DevExpress HTML/JS Reporting (designer\controls\utils\_charactercombHelper.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 declare class CharacterCombHelper { static getAlignments(textAlignment: string): { vertical: string; horizontal: string; }; static getLines(text: string, horizontal: number, multiline: boolean, wordwrap: boolean): any[]; static getTextOffset(texts: string[], position: number, verticalAlign: string, horizontalAlign: string, vertical: number, horizontal: number): number; static setText(texts: string[], cells: Array<any>, getTextOffset: (texts: string[], position: number) => number): void; static distributionEmptySpace(emptySpace: number, vertical: boolean, textAlignment: string): number; static getHorizontalVerticalByText(multiline: boolean, wordwrap: boolean, text: string, horizontal: number, vertical: number): { horizontal: number; vertical: number; }; }