using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
    /// 
    /// Represents color table for Office 2007 style system button displayed in form caption.
    /// 
    public class Office2007SystemButtonColorTable
    {
        /// 
        /// Gets or sets the color table of default button state.
        /// 
        public Office2007SystemButtonStateColorTable Default = null;
        /// 
        /// Gets or sets the color table of button state when mouse is over the button.
        /// 
        public Office2007SystemButtonStateColorTable MouseOver = null;
        /// 
        /// Gets or sets the color table of button state when mouse is pressed over the button.
        /// 
        public Office2007SystemButtonStateColorTable Pressed = null;
    }
}