ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetContentLongTextImage C# (CSharp) Метод

GetContentLongTextImage() публичный Метод

Gets a background image for the long text.
public GetContentLongTextImage ( PaletteContentStyle style, PaletteState state ) : Image
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
Результат Image
        public override Image GetContentLongTextImage(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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