ISCareTeam.Comments

Description

Any relevant comments for the care team member.

Syntax

object.Comments

Part Attribute Type Description
object Required
The object always implements the ISCareTeam interface

Return Value

string

Example

Display any relevant comments for the care team member.

Dim aPatient
Dim aCareTeamFilter
Dim aCareTeams, aCareTeam
Dim i
Dim aRoleShortCode
Dim aMessage

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

aCareTeamFilter.Patient = aPatient.Id

set aCareTeams = Profile.LoadCareTeams(aCareTeamFilter)
aMessage = "Team Member Count = " & aCareTeams.Count & vbNewLine
for i = 0 to aCareTeams.Count - 1
  set aCareTeam = aCareTeams.Item(i)
  
  set aRoleShortCode = Profile.LoadShortCode(aCareTeam.RoleID)
  aMessage = aMessage &  " Team Member Role - " &_ 
    aRoleShortCode.Description & vbNewLine & "    Comments: " &_
    aCareTeam.Comments & vbNewLine     
next 
Profile.MsgBox (aMessage)
Note:

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

Version information

Added in v7.8.0