ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetContentLongTextColorAngle C# (CSharp) Метод

GetContentLongTextColorAngle() публичный Метод

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.
Результат float
        public override float GetContentLongTextColorAngle(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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