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

GetLastQATView() public method

Gets the view element for the first visible and enabled quick access toolbar button.
public GetLastQATView ( ) : ViewBase
return ViewBase
        public ViewBase GetLastQATView()
        {
            // Last view is the extra button if defined
            if (_extraButton != null)
                return _extraButton;

            // Find the last qat button
            return _borderContents.GetLastQATView();
        }