ComponentFactory.Krypton.Toolkit.PaletteContent.GetContentShortTextV C# (CSharp) Method

GetContentShortTextV() public method

Gets the actual content short text vertical alignment value.
public GetContentShortTextV ( PaletteState state ) : PaletteRelativeAlign
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public PaletteRelativeAlign GetContentShortTextV(PaletteState state)
        {
            if (_shortText.TextV != PaletteRelativeAlign.Inherit)
                return _shortText.TextV;
            else
                return _inherit.GetContentShortTextV(state);
        }