ComponentFactory.Krypton.Ribbon.ViewLayoutRibbonGroupButton.GetFocusView C# (CSharp) Method

GetFocusView() public method

Gets the view to use for the group dialog button.
public GetFocusView ( ) : ViewBase
return ViewBase
        public ViewBase GetFocusView()
        {
            if (Visible && Enabled && _groupButton.Visible && _groupButton.Enabled)
                return _groupButton;
            else
                return null;
        }