ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetContentLongTextFont C# (CSharp) Method

GetContentLongTextFont() public method

Gets the font for the long text.
public GetContentLongTextFont ( PaletteContentStyle style, PaletteState state ) : Font
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return System.Drawing.Font
        public override Font GetContentLongTextFont(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentLongTextFont(state);
            else
                return base.GetContentLongTextFont(style, state);
        }