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

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

Gets a value indicating if background should be drawn.
public GetBackDraw ( PaletteBackStyle style, PaletteState state ) : InheritBool
style PaletteBackStyle Background style.
state PaletteState Palette value should be applicable to this state.
Результат InheritBool
        public override InheritBool GetBackDraw(PaletteBackStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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