Hide

SftTabs/OCX 6.5 - Tab Control for VB6

Display
Print

SftTabsTabs.EachRow Property

Defines the number of tabs per tab row.

Syntax

Get
VBCount = object.EachRow As Integer
Put
VBobject.EachRow = Count As Integer

object

A SftTabsTabs object.

Count

Defines the minimum number of tabs per row. Set to 0 to allow the tab control to space tabs automatically.

Comments

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.

Example

Private Sub Form_Load()
    With SftTabs1.Tabs
        .Rows = 2
        .EachRow = 3
        .Fixed = True
    End With
End Sub

See Also SftTabsTabs Object | Object Hierarchy


Last Updated 08/13/2020 - (email)
© 2024 Softel vdm, Inc.