ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.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)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteBack.GetBackColorAngle(state);
            else
                return base.GetBackColorAngle(style, state);
        }