CallLogEntry objects
Indicates when the call started.
The StartTime 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_entry.StartTime) mle_1.text += "End time: " + string(l_entry.EndTime)
Copyright © 2004. Sybase Inc. All rights reserved. |
![]() |