using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Defines the color table for the Slider Item in single state. /// public class Office2007SliderStateColorTable { /// /// Gets or sets the part background colors. /// public GradientColorTable PartBackground = null; /// /// Gets or sets the part border color /// public Color PartBorderColor = Color.Empty; /// /// Gets or sets the part border light color /// public Color PartBorderLightColor = Color.Empty; /// /// Gets or sets the part foreground color. /// public Color PartForeColor = Color.Empty; /// /// Gets or sets the part foreground light color. /// public Color PartForeLightColor = Color.Empty; /// /// Gets or sets the track line color. /// public Color TrackLineColor = Color.Empty; /// /// Gets or sets the track line light color. /// public Color TrackLineLightColor = Color.Empty; /// /// Gets or sets the track label color. /// public Color LabelColor = Color.Empty; /// /// Gets or sets the track label color when on Slider control. /// public Color SliderLabelColor = Color.Empty; } }