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

CancelEditing() public method

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

            this.EditingCellEditor.CancelEditing();

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