XPTable.Models.Table.EditCell C# (CSharp) Метод

EditCell() публичный Метод

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
Результат void
        public void EditCell(int row, int column)
        {
            this.EditCell(new CellPos(row, column));
        }

Same methods

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