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

GetContentShortTextNewFont() public method

Gets the font for the long text by generating a new font instance.
public GetContentShortTextNewFont ( PaletteState state ) : Font
state PaletteState Palette value should be applicable to this state.
return System.Drawing.Font
        public override Font GetContentShortTextNewFont(PaletteState state)
        {
            // Get the actual base font from inheritence chain
            Font ret = _inherit.GetContentShortTextNewFont(state);

            // We never try and modify an empty font
            if (ret != null)
                ret = GetContentFont(state, ret);

            return ret;
        }