ISCarePlan.Description

Description

The code description of the care plan template.

Syntax

object.Description

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

Return Value

string

Example

Display the code description of the selected care plan template.

Dim aCarePlan
Dim aMessage

Set aCarePlan = Profile.LoadCarePlanByCode ("FLU") 

if aCarePlan is nothing then 
  Profile.MsgBox ("There is no care plan with this code")
  exit sub   
end if

aMessage = aMessage & vbNewLine & "The code description of the " &_ 
  "care plan template is """ &  aCarePlan.Description & """"   

Profile.MsgBox (aMessage)
Note:

In Profile Client v8 on User Interface Description can be found in Maintain > Care Plans > Description.

Version information

Added in v7.8.0