SelectAll

Selects all the variables for analysis.

Syntax

SelectAll(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.SelectAll(doc)

NexScript

doc = GetActiveDocument()
SelectAll(doc)