devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
51 lines (50 loc) • 2.29 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\controls\xrCharactercomb.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
*/
import { ElementViewModel, ISize, ISurfaceContext } from '@devexpress/analytics-core/analytics-elements';
import { IModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import * as ko from 'knockout';
import { ControlType } from './utils/_controlTypes';
import { XRControlSurface, XRControlViewModel } from './xrControl';
export declare class XRCharacterComb extends XRControlViewModel {
static unitProperties: any[];
isPropertyDisabled(name: string): any;
private _createCellSideFromOriginalSide;
constructor(control: any, parent: ElementViewModel<ControlType>, serializer?: IModelSerializer);
roundSize(): void;
font: ko.Observable<string> | ko.Computed<string>;
cellWidth: ko.Computed<number>;
cellHeight: ko.Computed<number>;
autoCellSide: ko.Observable<number> | ko.Computed<number>;
verticalSpacing: ko.Observable<number> | ko.Computed<number>;
horizontalSpacing: ko.Observable<number> | ko.Computed<number>;
textAlignment: ko.Observable<string> | ko.Computed<string>;
sizeMode: ko.Observable<string> | ko.Computed<string>;
}
export declare class XRCharacterCombSurface extends XRControlSurface {
private _createCell;
private _updateCellsText;
private _getBorderWidthBySpacing;
private _applyBounds;
updateArray(cellsCount: number, array?: Array<any>): void;
fitBoundsToText(): void;
constructor(control: XRCharacterComb, context: ISurfaceContext);
getText(): string;
borderWidth: ko.Computed<number>;
borders: ko.Observable<string> | ko.Computed<string>;
verticalSpacing: ko.Observable<number> | ko.Computed<number>;
horizontalSpacing: ko.Observable<number> | ko.Computed<number>;
fullCellWidth: ko.Computed<number>;
fullCellHeight: ko.Computed<number>;
cellSize: ISize;
rtl: () => boolean;
vertical: ko.Computed<number>;
horizontal: ko.Computed<number>;
topEmptySpace: ko.Computed<number>;
leftEmptySpace: ko.Computed<number>;
cells: ko.ObservableArray<any>;
}