ComponentFactory.Krypton.Ribbon.ViewLayoutRibbonQATMini.GetNextQATView C# (CSharp) Method

GetNextQATView() public method

Gets the view element the button after the one provided.
public GetNextQATView ( ViewBase qatButton ) : ViewBase
qatButton ViewBase Search for entry after this view.
return ViewBase
        public ViewBase GetNextQATView(ViewBase qatButton)
        {
            ViewBase view = _borderContents.GetNextQATView(qatButton);

            // If no qat button is found and not already at the extra button
            if ((view == null) && (_extraButton != qatButton))
                view = _extraButton;

            return view;
        }