ISCountryInfo.Province

Description

The information about the province of the current health system.

Syntax

object.Province

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

Return Value

string

Example

Display the possible countries for the current health system and its province.

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 &_
  "Province: " & aCountryInfo.Province           
  
Profile.MessageBox(aMessage)    
Note:

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

Version information

Added in v7.11.0