igniteui-react-grids
Version:
Ignite UI React grid components.
29 lines (28 loc) • 671 B
JavaScript
import { IgrCellInfo } from "./igr-cell-info";
import { TextCellModel as TextCellModel_internal } from "./TextCellModel";
/**
* Backing information for a text cell in the grid.
*/
export class IgrTextCellInfo extends IgrCellInfo {
createImplementation() {
return new TextCellModel_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor() {
super();
}
/**
* Sets or gets the text value for the cell.
*/
get textValue() {
return this.i.mh;
}
set textValue(v) {
this.i.mh = v;
}
}