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