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

GetContentLongTextFont() public method

Gets the actual content long text font value.
public GetContentLongTextFont ( PaletteState state ) : Font
state PaletteState Palette value should be applicable to this state.
return System.Drawing.Font
        public Font GetContentLongTextFont(PaletteState state)
        {
            if (_longText.Font != null)
                return _longText.Font;
            else
                return _inherit.GetContentLongTextFont(state);
        }