ISProfileForm.FormReportTitle

Description

The title of the form that is printed before its content.

Syntax

object.FormReportTitle

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

Return Value

string

Example

Display some information about the form, including the title of the form that is printed before its content.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "Form Report Title: " & aForm.FormReportTitle 
    
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

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 form > Properties > FormReportTitle.

Version information

Added in v7.8.0