ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetContentLongTextH C# (CSharp) Method

GetContentLongTextH() public method

Gets the horizontal relative alignment of the long text.
public GetContentLongTextH ( PaletteContentStyle style, PaletteState state ) : PaletteRelativeAlign
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
return PaletteRelativeAlign
        public override PaletteRelativeAlign GetContentLongTextH(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteContent.GetContentLongTextH(state);
            else
                return base.GetContentLongTextH(style, state);
        }