GetDocEndTime

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

Syntax

GetDocEndTime(doc)

Parameters

Parameter

Type

Description

doc

documentReference

Reference to the document

Return

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

Examples

Python

import nex
doc = nex.GetActiveDocument()
endTime = nex.GetDocEndTime(doc)

NexScript

doc = GetActiveDocument()
endTime = GetDocEndTime(doc)