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

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

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

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