ISBevel.Hint

Description

The hint of the specified bevel.

Syntax

object.Hint

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

Return Value

string

Example

Display some information about the specified bevel, including its hint.

Dim aBevel
Dim aBevelInfo

Set aBevel = Form.Controls_("Bevel2")
aBevel.ShowHint = true 
aBevelInfo =_
  "Type Name: " & aBevel.TypeName & vbNewLine &_ 
  "Short Name: " & aBevel.ShortName & vbNewLine &_ 
  "Hint: " & aBevel.Hint & vbNewLine &_
  "Show hint: " & aBevel.ShowHint               
  
Profile.MsgBox(aBevelInfo)  
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 bevel in the controls tree > Properties > Hint.

Version information

Added in v7.8.0