セルの列を返します。
let column = this.cell.column;
IgxGridCell
行が現在編集モードかどうかを返します。
IgxGridCell
このセルの編集モードを開始/終了します。
cell.editMode = !cell.editMode;
IgxGridCell
編集モードのセルの現在の編集値を取得します。
let editValue = this.cell.editValue;
IgxGridCell
編集モードのセルの現在の編集値を設定します。 セル編集モードのみ。
this.cell.editValue = value;
IgxGridCell
セルが編集可能かどうかを返します。
IgxGridCell
セル ID を取得します。 グリッドのセルは以下によって識別されます。
let cellID = cell.id;
IgxGridCell
セルが選択されているかどうかを取得します。
let isSelected = this.cell.selected;
IgxGridCell
セルを選択または選択解除します。
this.cell.selected = true.
IgxGridCell
検証状態とエラーを取得します (存在する場合)。
let validation = this.cell.validation;
let errors = validation.errors;
セルの値を返します。
IgxGridCell
セルの値を更新します。
IgxGridCell
セルの幅を取得します。
let cellWidth = this.cell.width;
IgxGridCell
セルを含むグリッドを返します。
Memberof
IgxGridCell