ComponentFactory.Krypton.Toolkit.PaletteRibbonBackRedirect.GetRibbonBackColor3 C# (CSharp) Method

GetRibbonBackColor3() public method

Gets the third background color for the ribbon item.
public GetRibbonBackColor3 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetRibbonBackColor3(PaletteState state)
        {
            if (BackColor3 != Color.Empty)
                return BackColor3;
            else
                return _inheritBack.GetRibbonBackColor3(state);
        }