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

GetContentShortTextMultiLineH() public method

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