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

OnEditingStopped() protected method

Raises the EditingStopped event
protected OnEditingStopped ( CellEditEventArgs e ) : void
e CellEditEventArgs A CellEditEventArgs that contains the event data
return void
        protected internal virtual void OnEditingStopped(CellEditEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                if (EditingStopped != null)
                {
                    EditingStopped(e.Cell, e);
                }
            }
        }
Table