Returns True if the country of the health system is the United States of America.
object.IsUnitedStates
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISCountryInfo interface |
bool
Display IsUnitedStates 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)
In Profile Client v8 on User Interface Country can be found in
.