//AB/ CLASSDEF Class cWinFolderTabs is a BitmapContainer //disable DataBase tab page in Properties Set Drop_Allowed To False Set Control_Type To ctBASE Set Size_Allowed To True Set ObjectNameMask To "oWinFolderTabs" Set ClassPackage To "cWinFolderTabs.pkg" Set ClassHelpName To "" Property Complex Location 0 0 // Location of the control Property Color Color clWhite // This property sets the background color of cFolderTab panel. Property Always_Generate Complex Size 20 100 // Size of the control. For best appearance, Set height to 14. Property No_Visible No_Generate Mode Border_Style Border_None Border_None Property no_execute anchor peAnchors anNone // When a container is resized this determines how child objects are moved and resized. Objects can be anchored in any combination of left, right, top or bottom. // Property no_execute Boolean piTopState False // The position of the tabs can be on the top or the bottom of the tab-panel. To display them on the top, set this property to True; to display them on the bottom set this property to False. Property no_execute Color piTabsColor clWhite // This property sets the not-selected tabs color. By default, this value is clWhite. Property no_execute Color piSelectedItemColor clBtnFace // This property sets the selected tab color. By default, it will be set to clBtnFace system color. Property no_execute Color piHotItemTextColor clBlue // If you will set this property, the tab text will be highlighted with specified color when mouse moved over the tab. Property no_execute Color piItemTextColor clWindowText // This property allows change the color of the text placed on the tab. Property no_execute Boolean Autosize_Height_State False // If this property True, the Tab control will adjust own size to be exact to fit own buttons height. Property no_execute Integer HeightAddedToSelected 0 // This property sets the extra gap in pixels for the currently selected tab, making selected tab more contrast. End_Class