Example #1
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="controlBox">Associated SuperTabControlBox</param>
        public SuperTabCloseBox(SuperTabControlBox controlBox)
        {
            _ControlBox = controlBox;

            Visible = false;
        }
Example #2
0
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="controlBox">Associated SuperTabControlBox</param>
        public SuperTabMenuBox(SuperTabControlBox controlBox)
        {
            _ControlBox = controlBox;

            Style = eDotNetBarStyle.Office2007;
        }
Example #3
0
        /// <summary>
        /// Returns copy of the item.
        /// </summary>
        public override BaseItem Copy()
        {
            SuperTabControlBox objCopy = new SuperTabControlBox(_TabStripItem);
            CopyToItem(objCopy);

            return (objCopy);
        }