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

GetContentImageV() public method

Gets the actual content image vertical alignment value.
public GetContentImageV ( PaletteState state ) : PaletteRelativeAlign
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public PaletteRelativeAlign GetContentImageV(PaletteState state)
        {
            if (_image.ImageV != PaletteRelativeAlign.Inherit)
                return _image.ImageV;
            else
                return _inherit.GetContentImageV(state);
        }