ComponentFactory.Krypton.Toolkit.PaletteRibbonDouble.GetRibbonBackColor2 C# (CSharp) Method

GetRibbonBackColor2() public method

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