ISAddresses.Building

Description

The building of the patient's additional address.

Syntax

object.Building

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

Return Value

string

Example

Display the building of the patient's additional address.

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

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 & "The building of the patient's "
  aMessage = aMessage & "additional address is " & aAddresses.Building
next 
Profile.MsgBox (aMessage)   
Note:

In Profile Client v8 on User Interface Building can be found in Patient > Alter Patient > Personal > Additional Addresses > Edit Address > Address > Building field.

Version information

Added in v7.8.0