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 maximum number of rows (only used when LayoutMode is set to 2-AutoFlow).
Get | |||
VB | Rows = object.MaxRows As Long | ||
Put | |||
VB | object.MaxRows = Rows As Long |
object
Rows
Defines the maximum number of rows allowed, while recalculating the optimal tab layout (1-16). Set to 0 to allow any number of rows.
The MaxRows property defines the maximum number of rows (only used when LayoutMode is set to 2-AutoFlow).
The maximum number of rows must be smaller or equal to the number of available tabs, otherwise this property is ignored.
Private Sub Form_Load() Dim Index As Integer With SftTabs1.Direct .Tabs.Clear Index = .Tabs.Add("First") .Tabs.Current = Index Index = .Tabs.Add("Second") Index = .Tabs.Add("Third") Index = .Tabs.Add("Fourth") Index = .Tabs.Add("Fifth") .Tabs.MinRows = 2 .Tabs.MaxRows = 3 .Tabs.LayoutMode = layoutModeAutoFlow End With End Sub
See Also SftTabsTabs Object | Object Hierarchy