ISAddresses.ModifiedOn

Description

The date and time the patient's additional address was modified last time.

Syntax

object.ModifiedOn

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

Return Value

DateTime

Example

Display the date and time the patient's additional address was modified last time.

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 &_
    "Last modification of the patient's " &_
    "additional address (" & aAddresses.AsLine &_
    ") was on " & aAddresses.ModifiedOn
next 

Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface Modified On cannot be found.

Version information

Added in v8.2.0