ComponentFactory.Krypton.Toolkit.PaletteBack.GetBackImage C# (CSharp) Method

GetBackImage() public method

Gets a background image.
public GetBackImage ( PaletteState state ) : Image
state PaletteState Palette value should be applicable to this state.
return Image
        public Image GetBackImage(PaletteState state)
        {
            if (Image != null)
                return Image;
            else
                return _inherit.GetBackImage(state);
        }