Returns True if the patient object was modified after loading.
object.isModified
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
bool
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 In Profile Client v8 on User Interface cannot be found.