ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentStates.GetContentShortTextImageStyle C# (CSharp) Method

GetContentShortTextImageStyle() public method

Gets the image style for the short text.
public GetContentShortTextImageStyle ( PaletteState state ) : PaletteImageStyle
state PaletteState Palette value should be applicable to this state.
return PaletteImageStyle
        public PaletteImageStyle GetContentShortTextImageStyle(PaletteState state)
        {
            if (_imageStyle != PaletteImageStyle.Inherit)
                return _imageStyle;
            else
                return _inherit.GetContentShortTextImageStyle(state);
        }