ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentInherit.GetContentShortTextNewFont C# (CSharp) Method

GetContentShortTextNewFont() public method

Gets the font for the short text by generating a new font instance.
public GetContentShortTextNewFont ( PaletteState state ) : Font
state PaletteState Palette value should be applicable to this state.
return Font
        public override Font GetContentShortTextNewFont(PaletteState state)
        {
            if (_cellStyle != null)
                return _cellStyle.Font;
            else
                return SystemFonts.DefaultFont;
        }