FragmentTimestamps
Returns the list of fragment timestamps of the NexVar
object representing continuous variable.
Syntax
var.FragmentTimestamps()
Return
Returns the list of fragment timestamps of the NexVar
object representing continuous variable. The timestamps are in seconds.
Note
Python only.
Examples
Python
import nex
doc = nex.GetActiveDocument()
fts = doc['FP01'].FragmentTimestamps()
#print the first fragment timestamp
print(fts[0])