ISCountryInfo.PatientIdTitle

Description

This function returns the patient ID title in the current health system.

Syntax

object.PatientIdTitle()

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

Return Value

string

Returns the patient ID title in the current health system.

Example

Display the possible countries for the current health system and its patient ID title.

Dim aMessage
Dim aCountryInfo

Set aCountryInfo = Profile.CountryInfo

aMessage = _
  "IsAustralia: " & aCountryInfo.IsAustralia & vbNewLine &_
  "IsCanada: " & aCountryInfo.IsCanada & vbNewLine &_
  "IsNewZealand: " & aCountryInfo.IsNewZealand & vbNewLine &_
  "IsUnitedKingdom: " & aCountryInfo.IsUnitedKingdom & vbNewLine &_
  "IsUnitedStates: " & aCountryInfo.IsUnitedStates & vbNewLine &_
  "PatientIdTitle: " & aCountryInfo.PatientIdTitle & vbNewLine
           
 Profile.MessageBox(aMessage)  
Note:

In Profile Client v8 on User Interface Patient ID Title can be found in Patient > Alter Patient > General.

Version information

Added in v7.9.0