ComponentFactory.Krypton.Ribbon.RibbonRecentDocsTitleToContent.GetContentShortTextFont C# (CSharp) Méthode

GetContentShortTextFont() public méthode

Gets the font for the short text.
public GetContentShortTextFont ( PaletteState state ) : Font
state PaletteState Palette value should be applicable to this state.
Résultat System.Drawing.Font
        public override Font GetContentShortTextFont(PaletteState state)
        {
            if (_shortTextFont != null)
                _shortTextFont.Dispose();

            _shortTextFont = new Font(RibbonGeneral.GetRibbonTextFont(state), FontStyle.Bold);
            return _shortTextFont;
        }