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

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

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

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