ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetContentLongTextColorAlign C# (CSharp) Метод

GetContentLongTextColorAlign() публичный Метод

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.
Результат PaletteRectangleAlign
        public override PaletteRectangleAlign GetContentLongTextColorAlign(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

            if (inherit != null)
                return inherit.PaletteContent.GetContentLongTextColorAlign(state);
            else
                return Target.GetContentLongTextColorAlign(style, state);
        }
PaletteRedirectTriple