DeselectAll
Deselects all variables.
Syntax
DeselectAll(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.DeselectAll(doc)
NexScript
doc = GetActiveDocument()
DeselectAll(doc)