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

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

Gets the color alignment.
public GetBackColorAlign ( PaletteBackStyle style, PaletteState state ) : PaletteRectangleAlign
style PaletteBackStyle Background style.
state PaletteState Palette value should be applicable to this state.
Результат PaletteRectangleAlign
        public override PaletteRectangleAlign GetBackColorAlign(PaletteBackStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

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