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

GetContentShortTextColorAngle() public method

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