tui-grid
Version:
TOAST UI Grid : Powerful data grid control supported by TOAST UI
29 lines (27 loc) • 703 B
TypeScript
import { SummaryPosition } from './summary';
export interface Dimension {
offsetLeft: number;
offsetTop: number;
width: number;
autoWidth: boolean;
bodyHeight: number;
autoHeight: boolean;
minBodyHeight: number;
fitToParentHeight: boolean;
heightResizable: boolean;
rowHeight: number;
minRowHeight: number;
autoRowHeight: boolean;
headerHeight: number;
summaryPosition: SummaryPosition;
summaryHeight: number;
scrollbarWidth: number;
tableBorderWidth: number;
cellBorderWidth: number;
scrollX: boolean;
scrollY: boolean;
readonly contentsWidth: number;
readonly frozenBorderWidth: number;
readonly scrollXHeight: number;
readonly scrollYWidth: number;
}