using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Represents the color table for the tab item.
///
public class Office2007TabItemStateColorTable
{
///
/// Gets or sets top part background colors.
///
public LinearGradientColorTable TopBackground = new LinearGradientColorTable();
///
/// Gets or sets the bottom part background colors.
///
public LinearGradientColorTable BottomBackground = new LinearGradientColorTable();
///
/// Gets or sets the outer border colors.
///
public Color OuterBorder = Color.Empty;
///
/// Gets or sets the inner border colors.
///
public Color InnerBorder = Color.Empty;
///
/// Gets or sets the text colors.
///
public Color Text = Color.Empty;
}
}