ComponentFactory.Krypton.Toolkit.PaletteContent.GetContentShortTextColorStyle C# (CSharp) Method

GetContentShortTextColorStyle() public method

Gets the color drawing style for the short text.
public GetContentShortTextColorStyle ( PaletteState state ) : PaletteColorStyle
state PaletteState Palette value should be applicable to this state.
return PaletteColorStyle
        public PaletteColorStyle GetContentShortTextColorStyle(PaletteState state)
        {
            if (ShortText.ColorStyle != PaletteColorStyle.Inherit)
                return ShortText.ColorStyle;
            else
                return _inherit.GetContentShortTextColorStyle(state);
        }