ComponentFactory.Krypton.Toolkit.KryptonMonthCalendar.DesignerGetHitTest C# (CSharp) Method

DesignerGetHitTest() private method

private DesignerGetHitTest ( Point pt ) : bool
pt Point
return bool
        public bool DesignerGetHitTest(Point pt)
        {
            // Ignore call as view builder is already destructed
            if (IsDisposed)
                return false;

            // Check if any of the button specs want the point
            if ((_drawMonths != null) && _drawMonths.ButtonManager.DesignerGetHitTest(pt))
                return true;
            else
                return false;
        }
KryptonMonthCalendar