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

GetContentLongTextImage() public method

Gets an image for the long text.
public GetContentLongTextImage ( PaletteState state ) : Image
state PaletteState Palette value should be applicable to this state.
return Image
        public Image GetContentLongTextImage(PaletteState state)
        {
            if (LongText.Image != null)
                return LongText.Image;
            else
                return _inherit.GetContentLongTextImage(state);
        }