ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetContentShortTextImage C# (CSharp) Method

GetContentShortTextImage() public method

Gets a background image for the short text.
public GetContentShortTextImage ( PaletteContentStyle style, PaletteState state ) : Image
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return Image
        public override Image GetContentShortTextImage(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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