ISBevel.ShowHint

Description

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

Syntax

object.ShowHint

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

Return Value

bool

Example

Display ShowHint for the specified bevel.

Dim aBevel
Dim aBevelInfo

Set aBevel = Form.Controls_("Bevel2")

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 Show Hint cannot be found.

Version information

Added in v7.8.0