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.
object.OpenLinkOnClick
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
bool
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)