ISCheckBox.LinkCode

Description

This property returns the caption of the specified checkbox.

Syntax

object.LinkCode

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

Return Value

string

Example

Display some information about the specified checkbox, including its caption.

Dim aCheckBox
Dim aControlInfo

set aCheckBox = Form.Controls_("chkMV")

aControlInfo =_
  "Caption: " & aCheckBox.Caption & vbNewLine &_ 
  "ShortName: " & aCheckBox.ShortName & vbNewLine &_
  "TypeName: " & aCheckBox.TypeName & vbNewLine &_
  "LinkCode: " & aCheckBox.LinkCode                    
  
Profile.MsgBox(aControlInfo) 
Note:

In Profile Client v8 on User Interface Caption can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector > Select the checkbox in the controls tree > Caption.

Version information

Added in v7.8.0