devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
14 lines (13 loc) • 465 B
JavaScript
import { GridMaker } from '../../../model/tables/grid/grid-maker';
export class CellGridInfoManager {
tableCellGridInfos;
tableCellInfos;
constructor(table) {
this.tableCellGridInfos = [];
this.tableCellInfos = [];
GridMaker.fillGridInfo(table, this.tableCellGridInfos, this.tableCellInfos);
}
gridInfosByTablePosition(tblPos) {
return this.tableCellInfos[tblPos.rowIndex][tblPos.cellIndex];
}
}