using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines the combo box colors for a particular state.
///
public class Office2007ComboBoxStateColorTable
{
///
/// Gets or sets the border color.
///
public Color Border = Color.Empty;
///
/// Gets or sets the background color.
///
public Color Background = Color.Empty;
///
/// Gets or sets the outer expand button border.
///
public LinearGradientColorTable ExpandBorderOuter = null;
///
/// Gets or sets the inner expand button border.
///
public LinearGradientColorTable ExpandBorderInner = null;
///
/// Gets or sets the background color of the expand button.
///
public LinearGradientColorTable ExpandBackground = null;
///
/// Gets or sets the foreground color of the expand button.
///
public Color ExpandText = Color.Empty;
}
}