GetRibbonBackColor4() публичный Метод

Gets the fourth background color for the ribbon item.
public GetRibbonBackColor4 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
Результат Color
Пример #1
0
 /// <summary>
 /// Gets the fourth background color for the ribbon item.
 /// </summary>
 /// <param name="state">Palette value should be applicable to this state.</param>
 /// <returns>Color value.</returns>
 public Color GetRibbonBackColor4(PaletteState state)
 {
     if (BackColor4 != Color.Empty)
     {
         return(BackColor4);
     }
     else
     {
         return(_inheritBack.GetRibbonBackColor4(state));
     }
 }