ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentStates.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 (_colorStyle != PaletteColorStyle.Inherit)
                return _colorStyle;
            else
                return _inherit.GetContentShortTextColorStyle(state);
        }