ComponentFactory.Krypton.Ribbon.RibbonTabController.UpdateTargetState C# (CSharp) Method

UpdateTargetState() protected method

Set the correct visual state of the target.
protected UpdateTargetState ( Control c ) : void
c System.Windows.Forms.Control Owning control.
return void
        protected void UpdateTargetState(Control c)
        {
            if ((c == null) || c.IsDisposed)
                UpdateTargetState(new Point(int.MaxValue, int.MaxValue));
            else
                UpdateTargetState(c.PointToClient(Control.MousePosition));
        }

Same methods

RibbonTabController::UpdateTargetState ( Point pt ) : void