ISSignature.ShowHint

Description

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

Syntax

object.ShowHint

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

Return Value

bool

Example

Display ShowHint for the specified signature control.

Dim aSignature
Dim aSignatureInfo

Set aSignature = Form.Controls_("Signature1")
aSignatureInfo =_
  "Short Name: " & aSignature.Caption & vbNewLine &_
  "Type Name: " & aSignature.TypeName & vbNewLine &_ 
  "Hint: " & aSignature.Hint & vbNewLine &_
  "Show hint: " & aSignature.ShowHint             
  
Profile.MsgBox(aSignatureInfo)  
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 v8.5.0