CallLogEntry objects
Indicates when the call ended.
The EndTime property takes a DateTime value. The following example writes the start and end times of a call log entry to a multiline edit box:
// Integer idx passed into function CallLog l_log CallLogEntry l_logentry l_log = CREATE CallLog
l_logentry = l_log.getEntry (idx)
mle_1.text = "Start time: " + & string(l_logentry.StartTime) mle_1.text += "End time: " + string & (l_logentry.EndTime)