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

GetRibbonGroupSeparatorLight() public method

Gets the color for the dialog launcher light.
public GetRibbonGroupSeparatorLight ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetRibbonGroupSeparatorLight(PaletteState state)
        {
            if (GroupSeparatorLight != Color.Empty)
                return GroupSeparatorLight;
            else
                return _inherit.GetRibbonGroupSeparatorLight(state);
        }