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

GetContentShortTextFont() public method

Gets the font for the short text.
public GetContentShortTextFont ( PaletteContentStyle style, PaletteState state ) : Font
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return System.Drawing.Font
        public override Font GetContentShortTextFont(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentShortTextFont(state);
            else
                return base.GetContentShortTextFont(style, state);
        }