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

GetFirstQATView() public method

Gets the view element for the first visible and enabled quick access toolbar button.
public GetFirstQATView ( ) : ViewBase
return ViewBase
        public ViewBase GetFirstQATView()
        {
            // Find the first qat button
            ViewBase view = _borderContents.GetFirstQATView();

            // If defined then use the extra button
            if (view == null)
                view = _extraButton;

            return view;
        }