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

OnCellToolTipPopup() protected method

Raises the CellToolTipPopup event
protected OnCellToolTipPopup ( CellToolTipEventArgs e ) : void
e CellToolTipEventArgs A CellToolTipEventArgs that contains the event data
return void
        protected internal virtual void OnCellToolTipPopup(CellToolTipEventArgs e)
        {
            if (this.CanRaiseEvents && CellToolTipPopup != null)
                CellToolTipPopup(this, e);
        }
Table