ComponentFactory.Krypton.Toolkit.PaletteContentInheritOverride.GetContentLongTextV C# (CSharp) Method

GetContentLongTextV() public method

Gets the vertical relative alignment of the long text.
public GetContentLongTextV ( PaletteState state ) : PaletteRelativeAlign
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public override PaletteRelativeAlign GetContentLongTextV(PaletteState state)
        {
            if (_apply)
            {
                PaletteRelativeAlign ret = _primary.GetContentLongTextV(_override ? _state : state);

                if (ret == PaletteRelativeAlign.Inherit)
                    ret = _backup.GetContentLongTextV(state);

                return ret;
            }
            else
                return _backup.GetContentLongTextV(state);
        }