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

OnCellButtonClicked() protected method

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