using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines the colors for the single CheckBoxItem state.
///
public class Office2007CheckBoxStateColorTable
{
///
/// Gets or sets the background colors of the check box.
///
public LinearGradientColorTable CheckBackground = null;
///
/// Gets or sets the color of the check border.
///
public Color CheckBorder = Color.Empty;
///
/// Gets or sets the inner color of check box border.
///
public Color CheckInnerBorder = Color.Empty;
///
/// Gets or sets the inner background color of check box.
///
public LinearGradientColorTable CheckInnerBackground = null;
///
/// Gets or sets the color of the check sign that is drawn when item is checked.
///
public LinearGradientColorTable CheckSign = null;
///
/// Gets or sets the text color.
///
public Color Text = Color.Empty;
}
}