Deselect
Deselects the specified variable.
Syntax
Deselect(doc, var)
Parameters
Parameter |
Type |
Description |
---|---|---|
doc |
documentReference |
Reference to the document |
var |
variableReference |
Reference to the variable |
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()
# deselect variable Neuro04a from analysis
nex.Deselect(doc, doc["Neuron04a"])
NexScript
doc = GetActiveDocument()
% deselect variable Neuro04a from analysis
Deselect(doc, doc["Neuron04a"])