Sets and gets and exact time at which data is to be logged (in seconds). | |
Syntax: | long = object.SyncLogTime object.SyncLogTime = long |
Description: | CimTable.SyncLogTime is a long which
contains an exact time at which data should be logged to the
database. SynLogTime represents the number of seconds after
12:00:00 AM. Examples It is desired to log data at exactly 5:30 PM: ((5 + 12) * 3600) + (30 * 60) = 63000 myTable.SyncLogTime = 63000 |