ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetContentLongTextColorAngle C# (CSharp) Method

GetContentLongTextColorAngle() public method

Gets the color background angle for the long text.
public GetContentLongTextColorAngle ( PaletteContentStyle style, PaletteState state ) : float
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return float
        public override float GetContentLongTextColorAngle(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentLongTextColorAngle(state);
            else
                return base.GetContentLongTextColorAngle(style, state);
        }