ISPatientCard.Alias

Description

The alias code for the payer of the patient's card.

Syntax

object.Alias

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

Return Value

string

Example

Display the alias code for 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.Alias
next

Profile.MsgBox(aMessage)  
Note:

In Profile Client v8 on User Interface Alias can be found in Financial > Payers > Edit an existing payer > General > Alias field.

Version information

Added in v7.8.0