ComponentFactory.Krypton.Toolkit.PaletteContentInheritOverride.GetContentLongTextImage C# (CSharp) Method

GetContentLongTextImage() public method

Gets a background image for the long text.
public GetContentLongTextImage ( PaletteState state ) : Image
state PaletteState Palette value should be applicable to this state.
return Image
        public override Image GetContentLongTextImage(PaletteState state)
        {
            if (_apply)
            {
                Image ret = _primary.GetContentLongTextImage(_override ? _state : state);

                if (ret == null)
                    ret = _backup.GetContentLongTextImage(state);

                return ret;
            }
            else
                return _backup.GetContentLongTextImage(state);
        }