ISControl.ShowHint

Description

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

Syntax

object.ShowHint

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

Return Value

bool

Example

Display ShowHint for the control.

Dim aControl
Dim aControlInfo

Set aControl = Form.Controls_("btnDemo")

aControlInfo =_
  "Caption: " & aControl.Caption & vbNewLine &_ 
  "Hint: " & aControl.Hint & vbNewLine &_
  "Show hint: " & aControl.ShowHint               
  
Profile.MsgBox(aControlInfo)  
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