ComponentFactory.Krypton.Toolkit.VisualPopupToolTip.AllowMouseMove C# (CSharp) Method

AllowMouseMove() public method

Should the mouse move at provided screen point be allowed.
public AllowMouseMove ( Message m, Point pt ) : bool
m System.Windows.Forms.Message Original message.
pt Point Client coordinates point.
return bool
        public override bool AllowMouseMove(Message m, Point pt)
        {
            // We allow all mouse moves when we are showing
            return true;
        }