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

GetContentShortTextTrim() public method

Gets the actual text trimming for the short text.
public GetContentShortTextTrim ( PaletteState state ) : PaletteTextTrim
state PaletteState Palette value should be applicable to this state.
return PaletteTextTrim
        public PaletteTextTrim GetContentShortTextTrim(PaletteState state)
        {
            if (_trim != PaletteTextTrim.Inherit)
                return _trim;
            else
                return _inherit.GetContentShortTextTrim(state);
        }