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

GetLastQATView() public méthode

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