ISPatient.isModified

Description

Returns True if the patient object was modified after loading.

Syntax

object.isModified

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

Return Value

bool

Example

Display "IsModified = True" after changing the patient's first name. Before that, display "IsModified = False".

Dim aPatient  

Set aPatient = Profile.SelectPatient
Profile.MsgBox "FirstName = '" & aPatient.FirstName &  "'  IsModified = " & aPatient.IsModified
aPatient.FirstName = aPatient.FirstName + "ABC"
Profile.MsgBox "FirstName = '" & aPatient.FirstName &  "'  IsModified = " & aPatient.IsModified  
Note:

In Profile Client v8 on User Interface cannot be found.

Version information

Added in v7.8.0