GetDocStartTime

Returns the minimum timestamp value (in seconds) for all the document variables.

Syntax

GetDocStartTime(doc)

Parameters

Parameter

Type

Description

doc

documentReference

Reference to the document

Return

Returns the minimum timestamp value (in seconds) for all the document variables.

Examples

Python

import nex
doc = nex.GetActiveDocument()
startTime = nex.GetDocStartTime(doc)

NexScript

doc = GetActiveDocument()
startTime = GetDocStartTime(doc)