ISPatient.Cards

Description

The patient's cards, that entitle to a special rate or discount.

Syntax

object.Cards

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

Return Value

ISPatientCards

Example

Display the number of the patient's cards and their types.

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 = aPatient.Cards.Item(i)
  aMessage = aMessage & vbNewLine
  aMessage = aMessage & aCard.CardType 
next

Profile.MsgBox(aMessage)  
Note:

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

Version information

Added in v7.8.0