WaveVars

Returns the list of waveform variables in the document.

Syntax

doc.WaveVars()

Return

Returns the list of waveform variables in the document.

Note

You can also use global function nex.WaveVars(doc):

import nex
doc = nex.GetActiveDocument()
waveformVariables = nex.WaveVars(doc)

Examples

Python

import nex
doc = nex.GetActiveDocument()
waveformVariables = doc.WaveVars()