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

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

Gets the first back color for the long text.
public GetContentLongTextColor1 ( PaletteContentStyle style, PaletteState state ) : Color
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
Результат Color
        public override Color GetContentLongTextColor1(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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