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

GetRibbonTabSeparatorContextColor() public method

Gets the color for the tab context separator.
public GetRibbonTabSeparatorContextColor ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetRibbonTabSeparatorContextColor(PaletteState state)
        {
            if (TabSeparatorColor != Color.Empty)
                return TabSeparatorContextColor;
            else
                return _inherit.GetRibbonTabSeparatorContextColor(state);
        }