SftButton/DLL 3.0 - Button Control (Coming Soon)
SftTabs/DLL 7.0 - Tab Control (Coming Soon)
SftTree/DLL 7.5 - Tree Control
SftTree/DLL 8.0 - Tree Control (Coming Soon)
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
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
SftTree/NET 2.0 - Tree Control
Defines the number of tab rows.
| Get | |||
| VB | Count = object.Rows As Integer | ||
| Put | |||
| VB | object.Rows = Count As Integer |
object
Count
Defines the number of tab rows.
The Rows property defines the number of tab rows.
Scrollable tab controls always have exactly one row of tabs. If the Rows property is set to a value other than 1, scrolling is automatically disabled (see Scrolling.Style).
Tabs are automatically distributed among the number of defined tab rows, based on the Tabs.LayoutMode property.
The number of rows defined must be smaller or equal to the number of available tabs, as each row displays at least one tab.
Private Sub Form_Load()
SftTabs1.Tabs.Rows = 2
SftTabs1.Tabs.Fixed = True
SftTabs1.Tabs.LeftMargin = 200
SftTabs1.Tabs.RightMargin = 200
SftTabs1.Tabs.RowIndent = 400
End SubSee Also SftTabsTabs Object | Object Hierarchy
