Hide

SftTabs/OCX 6.5 - Tab Control for VB6

Display
Print

SftTabsTabs.Fixed Property

Defines whether all tabs are the same size.

Syntax

Get
VBBoolean = object.Fixed As Boolean
Put
VBobject.Fixed = Boolean As Boolean

object

A SftTabsTabs object.

Boolean

Defines whether all tabs are the same size.

BooleanDescription
TrueAll tabs are the same size, filling each row completely.
FalseTabs are sized based on their individual attributes.

Comments

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.

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.