Hide

SftTabs/OCX 6.5 - Tab Control for VB6

Display
Print

SftTabsTabs.FillComplete Property

Defines whether tabs fill each row completely.

Syntax

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

object

A SftTabsTabs object.

Boolean

Defines whether tabs fill each row completely.

BooleanDescription
TrueTabs fill each row completely.
FalseTabs are sized based on their attributes, possibly leaving portions of each row empty.

Comments

The FillComplete property defines whether tabs fill each row completely.

If the FillComplete property is set to True, the tabs are sized so that the tabs fill each tab row completely, by distributing the remaining available space in each row equally among all tabs, resulting in tabs sized proportionally to their tab text and graphic sizes. If the FillComplete property is set to False, the tab text, graphic and Tabs.Fixed property determine the width of each tab.

If the FillComplete property is set to True, scrolling is automatically disabled (see Scrolling.Style).

FillComplete must be set to False for a scrollable tab control.

Example

Private Sub Form_Load()
    With SftTabs1
        .Tab(0).Text = "Very long tab text"
        .Tabs.Rows = 2
        .Tabs.FillComplete = True
    End With
End Sub

See Also SftTabsTabs Object | Object Hierarchy


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