ISRecallActionFilter.PatientId

Description

This filter property is used to load the actions by ID of the patient.

Syntax

object.PatientId

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

Return Value

int

Example

Display the number of the actions filtered by ID of the patient.

sub main
  Dim aPatient   
  Dim aFilter
  Dim aActions
  Dim aMessage
  
  Set aPatient = Profile.SelectPatient  
  set aFilter = Profile.CreateRecallActionFilter

  aFilter.PatientId = aPatient.Id 
  
  set aActions = Profile.LoadRecallActions(aFilter)  
  
  aMessage = aMessage & vbNewLine & "The number of the actions " &_
    "filtered by ID of the patient is " & aActions.Count
    
  Profile.MsgBox(aMessage)  
end sub   
Note:

In Profile Client v8 on User Interface Patient ID cannot be found.

Version information

Added in v7.8.0