ISPatientRecallPlans.Count

Description

The number of the care plans owned by the patient.

Syntax

object.Count

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

Return Value

int

Example

Display the number of the care plans owned by the patient.

Dim aPatient
Dim aRecallPlans
Dim aMessage

Set aPatient = Profile.SelectPatient
set aRecallPlans = aPatient.RecallPlans

if aRecallPlans.Count = 0 then
  aMessage = vbNewLine & "The patient has no recall plans!"
else
  aMessage = "Recall Plans Count = " & aRecallPlans.Count 
end if

Profile.MsgBox(aMessage) 
Note:

In Profile Client v8 on User Interface Care Plans can be found in Clinical > Medical Record > Care Plans.

Version information

Added in v7.8.0