ISCareTeams.Count

Description

The number of the health providers or institutions that participate in the care of a particular patient.

Syntax

object.Count

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

Return Value

int

Example

Display the number of the health providers or institutions that participate in the care of a particular patient.

Dim aPatient
Dim aCareTeamFilter
Dim aCareTeams
Dim aMessage

Set aPatient = Profile.SelectPatient
set aCareTeamFilter = Profile.CreateCareTeamFilter

aCareTeamFilter.Patient = aPatient.Id

set aCareTeams = Profile.LoadCareTeams(aCareTeamFilter) 

aMessage = aMessage & "Care Team Count = " & aCareTeams.Count
 
Profile.MsgBox (aMessage)   
Note:

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

Version information

Added in v7.8.0