ComponentFactory.Krypton.Ribbon.ViewLayoutRibbonQATMini.GetFirstQATView C# (CSharp) Méthode

GetFirstQATView() public méthode

Gets the view element for the first visible and enabled quick access toolbar button.
public GetFirstQATView ( ) : ViewBase
Résultat 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;
        }