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

OnCellMouseUp() protected method

Raises the CellMouseUp event
protected OnCellMouseUp ( CellMouseEventArgs e ) : void
e CellMouseEventArgs A CellMouseEventArgs that contains the event data
return void
        protected virtual void OnCellMouseUp(CellMouseEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                ICellRenderer renderer = this.ColumnModel.GetCellRenderer(e.Column);

                if (renderer != null)
                {
                    renderer.OnMouseUp(e);
                }

                if (CellMouseUp != null)
                {
                    CellMouseUp(e.Cell, e);
                }
            }
        }
Table