ComponentFactory.Krypton.Toolkit.VisualContextMenu.DoesStackedClientMouseDownBecomeCurrent C# (CSharp) Method

DoesStackedClientMouseDownBecomeCurrent() public method

Should a mouse down at the provided point cause it to become the current tracking popup.
public DoesStackedClientMouseDownBecomeCurrent ( Message m, Point pt ) : bool
m System.Windows.Forms.Message Original message.
pt Point Client coordinates point.
return bool
        public override bool DoesStackedClientMouseDownBecomeCurrent(Message m, Point pt)
        {
            // Ask the manager if the mouse down should make the stacked menu the current one
            return ViewContextMenuManager.DoesStackedClientMouseDownBecomeCurrent(m, pt);
        }