SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines whether all tabs are the same size.
Get | |||
VB | Boolean = object.Fixed As Boolean | ||
Put | |||
VB | object.Fixed = Boolean As Boolean |
object
Boolean
Defines whether all tabs are the same size.
Boolean | Description |
---|---|
True | All tabs are the same size, filling each row completely. |
False | Tabs are sized based on their individual attributes. |
The Fixed property defines whether all tabs are the same size.
If the Fixed property is set to True, the tabs are sized so that the tabs fill each tab row completely, by making all tabs of equal size. If the Fixed property is set to False, the tab text, graphic and Tabs.FillComplete property determine the width of each tab.
If the Fixed property is set to False, the Tabs.EachRow property is set to 0.
It is recommended to set the Fixed property to False for a scrollable tab control.
Private Sub Form_Load() With SftTabs1.Tabs .Rows = 2 .EachRow = 3 .Fixed = True End With End Sub
See Also SftTabsTabs Object | Object Hierarchy