SelectAllEvents
Selects all event type variables for analysis.
Syntax
SelectAllEvents(doc)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
Return
None.
Note
Only selected variables used in analysis. Use select and deselect functions to specify what variables you want to analyze.
Examples
Python
import nex
doc = nex.GetActiveDocument()
nex.SelectAllEvents(doc)
NexScript
doc = GetActiveDocument()
SelectAllEvents(doc)