ISPatientCard.CardType

Description

The type of the patient's card.

Syntax

object.CardType

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

Return Value

string

Example

Display the number and the type of the patient's cards.

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.CardType
next

Profile.MsgBox(aMessage)  
Note:

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

Version information

Added in v7.8.0