UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

29 lines (28 loc) 671 B
import { IgcCellInfo } from "./igc-cell-info"; import { TextCellModel as TextCellModel_internal } from "./TextCellModel"; /** * Backing information for a text cell in the grid. */ export class IgcTextCellInfo extends IgcCellInfo { 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; } }