This function checks if the patient is sealed (all records about the patient become read-only and cannot be modified by anyone).
object.PatientSealed(ID)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
ID |
In, Required | int |
ID of the patient |
bool
Display whether the patient's records are sealed or unsealed.
Dim aPatient
Dim aSealed
Set aPatient = Profile.SelectPatient
aSealed = Profile.PatientSealed(aPatient.ID)
Profile.MsgBox ("The patient is sealed: " & aSealed)
In Profile Client v8 on User Interface cannot be found.