@syncfusion/ej2-grids
Version:
Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel.
21 lines (20 loc) • 417 B
JavaScript
import { merge } from '@syncfusion/ej2-base';
/**
* Cell
*
* @hidden
*/
var Cell = /** @class */ (function () {
function Cell(options) {
this.isSpanned = false;
this.isRowSpanned = false;
merge(this, options);
}
Cell.prototype.clone = function () {
var cell = new Cell({});
merge(cell, this);
return cell;
};
return Cell;
}());
export { Cell };