ISPatientCard.Payer

Description

The payer of the patient's card.

Syntax

object.Payer

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

Return Value

ISPatient

Example

Display the name of the payer of the patient's card.

Dim aPatient  
Dim aCards
Dim aCard
Dim aMessage

Set aPatient = Profile.SelectPatient 
set aCards = aPatient.Cards
aMessage = "Cards Count = " & aCards.Count

for i = 0 to aCards.Count - 1
  set aCard = aCards.Item(i)
  aMessage = aMessage & vbNewLine
  aMessage = aMessage & aCard.Payer.Lastname
next

Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Payer can be found in Patient > Alter Patient > Financial > Health Plans and Cards > Edit > Payer field.

Version information

Added in v7.8.0