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