ISLabel.ShowHint

Description

This property is True if the pop-up hint is allowed for the specified label control.

Syntax

object.ShowHint

Part Attribute Type Description
object Required
The object always implements the ISLabel interface

Return Value

bool

Example

Display ShowHint for the specified label control.

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)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Show Hint cannot be found.

Version information

Added in v7.8.0