ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupGallery.GetPreviousFocusItem C# (CSharp) 메소드

GetPreviousFocusItem() 공개 메소드

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