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

OnBeginEditing() protected method

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