ISPatientCard.StartedDate

Description

The date and time the patient's card is valid from.

Syntax

object.StartedDate

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

Return Value

DateTime

Example

Display the date and time the patient's card is valid from.

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

Profile.MsgBox(aMessage)    
Note:

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

Version information

Added in v7.8.0