Specifications

Section 4. CRBasic - Native Language Programming
4-14
Tablename.timestamp(m,n) = element m of the timestamp output n records ago
where:
timestamp(1,n) = microseconds since 1990
timestamp(2,n) = microseconds into the current year
timestamp(3,n) = microseconds into the current month
timestamp(4,n) = microseconds into the current day
timestamp(5,n) = microseconds into the current hour
timestamp(6,n) = microseconds into the current minute
timestamp(7,n) = microseconds into the current second
Tablename.tablesize(1,1) = the size of the table in number of records.
Tablename.tablefull(1,1) = -1 (True) or 0 (False) to indicate if a fill and stop
table is full or if a ring memory table has begun overwriting its oldest data. (0
indicates the table is not full or that oldest data has not been overwritten.)
Tablename.eventend(1,1) is only valid for a data table using the DataEvent
instruction, Tablename.eventend(1,1) = -1 if the last record of an event
occurred the last time the table was called, = 0 if the data table did not store a
record or if it is in the middle of an event.
Tablename.eventcount(1,1) = the number of data storage events that have
occurred in a data table using the DataEvent instruction.
The values of Tablename.output(1,1) and Tablename.eventend
(1,1) are only updated when the tables are called.
The WorstCase example in Section 6.2 illustrates the use of this syntax.
NOTE