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

StopEditing() public method

Stops editing the current Cell and commits any changes
public StopEditing ( ) : void
return void
        public void StopEditing()
        {
            // don't bother if we're not editing
            if (this.EditingCell == CellPos.Empty)
            {
                return;
            }

            this.EditingCellEditor.StopEditing();

            this.Invalidate(this.RowRect(this.editingCell.Row));

            this.editingCell = CellPos.Empty;
            this.curentCellEditor = null;
        }
Table