ISAddresses.AdrType

Description

ID of the short code of the additional address type.

Syntax

object.AdrType

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

Return Value

int

Example

Display ID of the short code of the additional address type.

Dim aPatient
Dim aAddresses, aAddress
Dim i
Dim aMessage   
Dim aAddressCollection

Set aPatient = Profile.SelectPatient 

set aAddressCollection = aPatient.LoadAddresses

for i = 0 to aAddressCollection.Count - 1
  set aAddress = aAddressCollection.Item(i)  
  set aAddresses = Profile.LoadAdditionalAddress(aAddress.Id)
  
  aMessage = aMessage & vbNewLine &_
    "Address Type ID: " & aAddresses.AdrType
next 

Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface Adr Type cannot be found.

Version information

Added in v7.8.0