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

GetContentLongTextColorAlign() public method

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