ISImage.Hint

Description

The hint of the specified image control.

Syntax

object.Hint

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

Return Value

string

Example

Display some information about the specified image control, including its hint.

Dim aImage
Dim aImageInfo

Set aImage = Form.Controls_("Image1")
aImageInfo =_
  "Short Name: " & aImage.ShortName & vbNewLine &_ 
  "Hint: " & aImage.Hint & vbNewLine &_
  "Show hint: " & aImage.ShowHint                 
  
Profile.MsgBox(aImageInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Hint can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector > Select the image control in the controls tree > Properties > Hint.

Version information

Added in v7.8.0