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 whether tabs fill each row completely.
Get | |||
VB | Boolean = object.FillComplete As Boolean | ||
Put | |||
VB | object.FillComplete = Boolean As Boolean |
object
Boolean
Defines whether tabs fill each row completely.
Boolean | Description |
---|---|
True | Tabs fill each row completely. |
False | Tabs are sized based on their attributes, possibly leaving portions of each row empty. |
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.
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