ComponentFactory.Krypton.Toolkit.PaletteRibbonDouble.GetRibbonTextColor C# (CSharp) Method

GetRibbonTextColor() public method

Gets the tab color for the item text.
public GetRibbonTextColor ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
return Color
        public Color GetRibbonTextColor(PaletteState state)
        {
            if (TextColor != Color.Empty)
                return TextColor;
            else
                return _inheritText.GetRibbonTextColor(state);
        }