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