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

GetContentShortTextImageAlign() public method

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