devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
16 lines (15 loc) • 566 B
TypeScript
import { LayoutRow } from '../../../layout/main-structures/layout-row';
export declare class RowHeightState {
maxBoxHeight: number;
maxAscent: number;
maxDescent: number;
maxPictureBoxHeight: number;
height: number;
baseLine: number;
spacingBefore: number;
constructor(maxBoxHeight: number, maxAscent: number, maxDescent: number, maxPictureBoxHeight: number);
initFromRow(row: LayoutRow): void;
applyToRow(row: LayoutRow): void;
getFullRowHeight(): number;
equalHeights(obj: RowHeightState): boolean;
}