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 ( CellPos cellPos, ICellEditor editor ) : void
cellPos CellPos The Cell that is currently being edited
editor ICellEditor The ICellEditor used to edit the Cell
return void
        private void SetEditingCell(CellPos cellPos, ICellEditor editor)
        {
            this.editingCell = cellPos;
            this.curentCellEditor = editor;
        }

Same methods

Table::SetEditingCell ( Cell cell, ICellEditor editor ) : void
Table