ISEdit.OpenLinkOnClick

Description

If this property is True, then double click on the specified edit control opens the dialogue window. It is not accessible in the Object Inspector.

Syntax

object.OpenLinkOnClick

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

Return Value

bool

Example

Display OpenLinkOnClick for the specified edit control.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_
  "TypeName: " & aEdit.TypeName & vbNewLine &_   
  "Open Link On Click " & aEdit.OpenLinkOnClick
 
Profile.MsgBox(aEditInfo) 
Note: The ‘IsLinkEdit’ property should be set to ‘True’. This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0