XPTable.Models.Table.EditCell C# (CSharp) Méthode

EditCell() public méthode

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
Résultat void
        public void EditCell(int row, int column)
        {
            this.EditCell(new CellPos(row, column));
        }

Same methods

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