SetDocStartTime

Sets the start of experimental session (in seconds) for the document.

Syntax

SetDocStartTime(doc, start_time)

Parameters

Parameter

Type

Description

doc

documentReference

Reference to the document

start_time

number

Start time in seconds

Return

None.

Examples

Python

import nex
doc = nex.GetActiveDocument()
start_time = 0.1
nex.SetDocStartTime(doc, start_time)

NexScript

doc = GetActiveDocument()
start_time = 0.1
SetDocStartTime(doc, start_time)