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