ISEdit.ShowHint

Description

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

Syntax

object.ShowHint

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

Return Value

bool

Example

Display ShowHint for the specified edit control.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")

aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_ 
  "Hint: " & aEdit.Hint & vbNewLine &_
  "Show hint: " & aEdit.ShowHint                 
  
Profile.MsgBox(aEditInfo) 
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