ISProcedure.StartTime

Description

The scheduled date and time the patient's surgical procedure should be started.

Syntax

object.StartTime

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

Return Value

DateTime

Example

Display the number of the patient's surgical procedures within the collection, their descriptions, dates and start time.

Dim aPatient  
Dim aProcedureList, aProcedure
Dim i
Dim aMessage

Set aPatient = Profile.SelectPatient 
set aProcedureList = aPatient.ProcedureList
aMessage = "Procedures Count = " & aProcedureList.Count

for i = 0 to aProcedureList.Count - 1
  set aProcedure = aProcedureList.Item(i)
  aMessage = aMessage & vbNewLine & (i + 1) & ") " &_ 
    aProcedure.ProcedureExplanation & " (started on " & aProcedure.StartTime & ")" 
next
    
Profile.MsgBox(aMessage)   
Note:

In Profile Client v8 on User Interface Start Time can be found in Special > Procedures > Edit Procedure > Start Time field.

Version information

Added in v7.8.0