IntervalVars
Returns the list of interval variables in the document.
Syntax
doc.IntervalVars()
Return
Returns the list of interval variables in the document.
Note
You can also use global function nex.IntervalVars(doc)
:
import nex
doc = nex.GetActiveDocument()
intervals = nex.IntervalVars(doc)
Examples
Python
import nex
doc = nex.GetActiveDocument()
intervals = doc.IntervalVars()