XPTable.Models.Table.OnCellToolTipPopup C# (CSharp) Метод

OnCellToolTipPopup() защищенный Метод

Raises the CellToolTipPopup event
protected OnCellToolTipPopup ( CellToolTipEventArgs e ) : void
e CellToolTipEventArgs A CellToolTipEventArgs that contains the event data
Результат void
        protected internal virtual void OnCellToolTipPopup(CellToolTipEventArgs e)
        {
            if (this.CanRaiseEvents && CellToolTipPopup != null)
                CellToolTipPopup(this, e);
        }
Table