Timestamps

Returns the list of all the timestamps of the NexVar object.

Syntax

var.Timestamps()

Return

Returns the list of all the timestamps of the NexVar object. The timestamp values are in seconds.

Note

Python only.

Examples

Python

import nex
doc = nex.GetActiveDocument()
ts = doc['ResponseCorrect'].Timestamps()
# print the first timestamp
print(ts[0])