IntervalNames
Returns the list of interval variable names in the document.
Syntax
doc.IntervalNames()
Return
Returns the list of interval variable names in the document.
Note
You can also use global function nex.IntervalNames(doc)
:
import nex
doc = nex.GetActiveDocument()
namesOfIntervalVars = nex.IntervalNames(doc)
Examples
Python
import nex
doc = nex.GetActiveDocument()
namesOfIntervalVars = doc.IntervalNames()