The code description of the care plan template.
object.Description
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISCarePlan interface |
string
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)
In Profile Client v8 on User Interface Description can be found in
.