#if FRAMEWORK20 using System.Drawing; namespace DevComponents.DotNetBar { internal class VS2008DockSuperTabStrip : SuperTabStripBaseDisplay { /// /// Constructor /// /// Associated SuperTabStripItem public VS2008DockSuperTabStrip(SuperTabStripItem tabStripItem) : base(tabStripItem) { } #region Internal properties /// /// Gets the TabLayoutOffset /// internal override Size TabLayoutOffset { get { return (new Size(3, 2)); } } #endregion } } #endif