ComponentFactory.Krypton.Toolkit.ToolTipController.MouseDown C# (CSharp) Метод

MouseDown() публичный Метод

Mouse button has been pressed in the view.
public MouseDown ( Control c, Point pt, MouseButtons button ) : bool
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button pressed down.
Результат bool
        public bool MouseDown(Control c, Point pt, MouseButtons button)
        {
            _manager.MouseDown(_targetElement, c, pt, button);

            if (_targetController != null)
                return _targetController.MouseDown(c, pt, button);
            else
                return false;
        }