The hint of the specified label control.
object.Hint
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISLabel interface |
string
Display some information about the specified label control, including its hint.
Dim aLabel
Dim aLabelInfo
Set aLabel = Form.Controls_("Label1")
aLabelInfo =_
"Caption: " & aLabel.Caption & vbNewLine &_
"Short Name: " & aLabel.ShortName & vbNewLine &_
"Hint: " & aLabel.Hint & vbNewLine &_
"Show hint: " & aLabel.ShowHint
Profile.MsgBox(aLabelInfo)
In Profile Client v8 on User Interface Hint can be found in
.