using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines the color table for the Quick Access toolbar.
///
public class Office2007QuickAccessToolbarStateColorTable
{
///
/// Gets or sets the colors of the top background.
///
public LinearGradientColorTable TopBackground = null;
///
/// Gets or sets the colors of the bottom background.
///
public LinearGradientColorTable BottomBackground = null;
///
/// Gets or sets the outer border color.
///
public Color OutterBorderColor = Color.Empty;
///
/// Gets or sets the middle border color.
///
public Color MiddleBorderColor = Color.Empty;
///
/// Gets or sets the inner border color.
///
public Color InnerBorderColor = Color.Empty;
///
/// Gets or sets the border when Windows Vista Glass is enabled.
///
public LinearGradientColorTable GlassBorder = null;
}
}