ComponentFactory.Krypton.Toolkit.PaletteDataGridViewContentCommon.GetContentShortTextH C# (CSharp) Method

GetContentShortTextH() public method

Gets the actual content short text horizontal alignment value.
public GetContentShortTextH ( PaletteState state ) : PaletteRelativeAlign
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public override PaletteRelativeAlign GetContentShortTextH(PaletteState state)
        {
            if (_textH != PaletteRelativeAlign.Inherit)
                return _textH;
            else
                return Inherit.GetContentShortTextH(state);
        }