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

EditCell() public method

Starts editing the Cell at the specified row and column indexes
public EditCell ( int row, int column ) : void
row int The row index of the Cell to be edited
column int The column index of the Cell to be edited
return void
        public void EditCell(int row, int column)
        {
            this.EditCell(new CellPos(row, column));
        }

Same methods

Table::EditCell ( XPTable.Models.CellPos cellPos ) : void
Table