XPTable.Models.Table.SetEditingCell C# (CSharp) Method

SetEditingCell() private method

Records the Cell that is currently being edited and the ICellEditor used to edit the Cell
private SetEditingCell ( Cell cell, ICellEditor editor ) : void
cell Cell The Cell that is currently being edited
editor ICellEditor The ICellEditor used to edit the Cell
return void
        private void SetEditingCell(Cell cell, ICellEditor editor)
        {
            this.SetEditingCell(new CellPos(cell.Row.InternalIndex, cell.InternalIndex), editor);
        }

Same methods

Table::SetEditingCell ( CellPos cellPos, ICellEditor editor ) : void
Table