ISLetterWorkParams.LetterStatus

Description

The status of the letter.

Syntax

object.LetterStatus

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

Return Value

string

Example

Print the letter for the selected patient and display the printing result.

Dim aPatient 
Dim aParam
Dim aResult

Set aPatient = Profile.SelectPatient
set aParam = Profile.CreateLetterWorkParams
aParam.PatientId = aPatient.Id
aParam.Template = "All Categories\Template 1"
aParam.LetterStatus = "Draft"

aResult = Profile.GenerateAndPrintLetter(aParam)

Profile.MsgBox("Letter printing result: " & aResult)   
Note:

In Profile Client v8 on User Interface Letter Status can be found in Clinical > Medical Record > Documents > Open saved document > Information and Recipients > Status field or in Organisation > Work Centre > Communication > Letters > Open saved document > Information and Recipients > Status field.

Version information

Added in v7.8.0