ComponentFactory.Krypton.Toolkit.PaletteBack.GetBackColor2 C# (CSharp) Method

GetBackColor2() public method

Gets the second back color.
public GetBackColor2 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetBackColor2(PaletteState state)
        {
            if (Color2 != Color.Empty)
                return Color2;
            else
                return _inherit.GetBackColor2(state);
        }