ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetContentShortTextImage C# (CSharp) 메소드

GetContentShortTextImage() 공개 메소드

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.
리턴 Image
        public override Image GetContentShortTextImage(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentShortTextImage(state);
            else
                return base.GetContentShortTextImage(style, state);
        }