using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Defines color table for the Office 2007 style ProgressBarItem.
    /// 
    public class Office2007ProgressBarColorTable
    {
        /// 
        /// Gets or sets the background color collection blend for the item background.
        /// 
        public GradientColorTable BackgroundColors = null;
        /// 
        /// Gets or sets the outer border color.
        /// 
        public Color OuterBorder = Color.Empty;
        /// 
        /// Gets or sets the inner border color.
        /// 
        public Color InnerBorder = Color.Empty;
        /// 
        /// Gets or sets the color collection blend for the current progress part of the item.
        /// 
        public GradientColorTable Chunk = null;
        /// 
        /// Gets or sets the color collection blend for overlay for the current progress of the item.
        /// 
        public GradientColorTable ChunkOverlay = null;
        /// 
        /// Gets or sets the color collection blend of shadow for the current progress of the item.
        /// 
        public GradientColorTable ChunkShadow = null;
    }
}