ComponentFactory.Krypton.Toolkit.PaletteContent.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 Font GetContentShortTextFont(PaletteState state)
        {
            if (_shortText.Font != null)
                return _shortText.Font;
            else
                return _inherit.GetContentShortTextFont(state);
        }