devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
19 lines (18 loc) • 921 B
TypeScript
import { ColumnIntervalAuto } from './column-interval';
import { ColumnInterval } from './column-width-engine/column-interval';
import { GridCalculator } from './grid-calculator';
export declare class GridCalculatorAuto extends GridCalculator<ColumnIntervalAuto> {
protected makeInterval(interval: ColumnInterval): ColumnIntervalAuto;
protected applyCellsWidth(_intervals: ColumnInterval[]): void;
protected autofitTail(totalWidth: number, estimatedTableWidth: number): void;
private compressProportionallyMinWidth;
protected calcCacheCellWidths(): void;
private applyCellContentWidth;
private applyCellContentWidthWithoutSpan;
private applyPreferredWidth;
private applyCellContentWidthWithSpan;
private enlargeColumnsMinWidthByPreferredWidth;
private enlargeColumnsHorizontalMargins;
private enlargeColumnsMinWidth;
private enlargeColumnsMaxWidth;
}