ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupGallery.GetNextFocusItem C# (CSharp) Method

GetNextFocusItem() public method

Gets the next focus item based on the current item as provided.
public GetNextFocusItem ( ViewBase current, bool &matched ) : ViewBase
current ViewBase The view that is currently focused.
matched bool Has the current focus item been matched yet.
return ViewBase
        public ViewBase GetNextFocusItem(ViewBase current, ref bool matched)
        {
            matched = ((current == this) || (current == _viewLarge));
            return null;
        }