Returns True if the patient is eligible for services.
object.IsEligible
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientEligibility interface |
bool
Display IsEligible for the patient.
Dim aPatient
Dim aPatEligibility
Dim aIsEligible
Set aPatient = Profile.SelectPatient
set aPatEligibility = Profile.GetLastPatientEligibility(aPatient.ID)
if aPatEligibility is nothing then
Profile.MsgBox ("There is no eligibility for this patient!")
else
aIsEligible = aPatEligibility.IsEligible
Profile.MsgBox (aIsEligible)
end if
In Profile Client v8 on User Interface the information about the patient's eligibility can be found in
.