ISProfileForm.ControlsList

Description

This property returns the list of names of all form child controls.

Syntax

object.ControlsList

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface
Restriction: This property is readonly.

Return Value

ISStrings

Example

Display the list of names of all form child controls.

Dim aForm
Dim aFormInfo
Dim aControlList

Set aForm = Profile.Form
set aControlList = aForm.ControlsList
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine & vbNewLine &_   
  "Control list text: " & vbNewLine & aControlList.Text
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

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

Version information

Added in v7.8.0