XPTable.Models.Table.SetEditingCell C# (CSharp) 메소드

SetEditingCell() 개인적인 메소드

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
리턴 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