ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentCommon.GetContentShortTextFont C# (CSharp) Method

GetContentShortTextFont() public method

Gets the actual content short text font value.
public GetContentShortTextFont ( PaletteState state ) : Font
state PaletteState Palette value should be applicable to this state.
return System.Drawing.Font
        public override Font GetContentShortTextFont(PaletteState state)
        {
            if (_font != null)
                return _font;
            else
                return Inherit.GetContentShortTextFont(state);
        }