ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupButton.GetNextFocusItem C# (CSharp) Méthode

GetNextFocusItem() public méthode

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.
Résultat ViewBase
        public ViewBase GetNextFocusItem(ViewBase current, ref bool matched)
        {
            // Do we match the current item?
            matched = (current == _viewLarge) || (current == _viewMediumSmall);
            return null;
        }