ISCountryInfo.IsAustralia

Description

Returns True if the country of the health system is Australia.

Syntax

object.IsAustralia

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

Return Value

bool

Example

Display IsAustralia for the current health system.

Dim aCountryInfo
Dim aMessage

Set aCountryInfo = Profile.CountryInfo

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

In Profile Client v8 on User Interface Country can be found in Organisation > Preferences > Health System > Country field.

Version information

Added in v7.11.0