ComponentFactory.Krypton.Toolkit.PaletteRedirectBack.GetBackImageStyle C# (CSharp) Метод

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

Gets the background image style.
public GetBackImageStyle ( PaletteBackStyle style, PaletteState state ) : PaletteImageStyle
style PaletteBackStyle Background style.
state PaletteState Palette value should be applicable to this state.
Результат PaletteImageStyle
        public override PaletteImageStyle GetBackImageStyle(PaletteBackStyle style, PaletteState state)
        {
            IPaletteBack inherit = GetInherit(state);

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