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

GetRibbonTabSeparatorColor() public method

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