ComponentFactory.Krypton.Toolkit.PaletteRibbonGeneral.GetRibbonMinimizeBarLight C# (CSharp) Method

GetRibbonMinimizeBarLight() public method

Gets the color for the ribbon minimize bar light.
public GetRibbonMinimizeBarLight ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetRibbonMinimizeBarLight(PaletteState state)
        {
            if (MinimizeBarLightColor != Color.Empty)
                return MinimizeBarLightColor;
            else
                return _inherit.GetRibbonMinimizeBarLight(state);
        }