ComponentFactory.Krypton.Toolkit.PaletteRedirectBack.GetBackColorAngle C# (CSharp) Method

GetBackColorAngle() public method

Gets the color background angle.
public GetBackColorAngle ( PaletteBackStyle style, PaletteState state ) : float
style PaletteBackStyle Background style.
state PaletteState Palette value should be applicable to this state.
return float
        public override float GetBackColorAngle(PaletteBackStyle style, PaletteState state)
        {
            IPaletteBack inherit = GetInherit(state);

            if (inherit != null)
                return inherit.GetBackColorAngle(state);
            else
                return Target.GetBackColorAngle(style, state);
        }