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 the number of tabs per tab row.
Get | |||
VB | Count = object.EachRow As Integer | ||
Put | |||
VB | object.EachRow = Count As Integer |
object
Count
Defines the minimum number of tabs per row. Set to 0 to allow the tab control to space tabs automatically.
The EachRow property defines the number of tabs per tab row.
The EachRow property only applies to fixed with tabs as it determines the width of fixed-width tabs. If the EachRow property is set to a value other than 0, fixed width tabs are automatically enabled (see Tabs.Fixed property).
The value defined using EachRow must be equal to or larger than the number of tabs that are actually displayed on each row. By setting the EachRow property to a higher value, the tabs on each row are sized as if Count tabs were present on each row.
If the EachRow property defines a value smaller than the number of tabs per row that must be displayed to show all tabs, the value is ignored.
Private Sub Form_Load() With SftTabs1.Tabs .Rows = 2 .EachRow = 3 .Fixed = True End With End Sub
See Also SftTabsTabs Object | Object Hierarchy