Hide

SftTabs/OCX 6.5 - Tab Control for VB6

Display
Print

SftTabsTab.ToolTip Property

Defines the tab's ToolTip text.

Syntax

Get
VBText = object.ToolTip As String
Put
VBobject.ToolTip = Text As String

object

A SftTabsTab object.

Text

Defines the tab's ToolTip text used for the tab described by object.

Comments

The ToolTip property defines the tab's ToolTip text.

ToolTip text consists of one single line or multiple lines of text.

Example

Private Sub Form_Load()
Private Sub Form_Load()
    Dim TabIndex As Integer
    With SftTabs1
        .Tabs.Clear
        TabIndex = .Tabs.Add("First Tab")
        TabIndex = .Tabs.Add("Second Tab")
        .Tab(TabIndex).Text = "Second Tab (modified)"
        .Tab(TabIndex).ToolTip = "The Second Tab Was Modified"
    End With
End Sub

See Also SftTabsTab Object | Object Hierarchy


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