TmDeselectVars Procedure

Clears the current list of selected variables.

Usage

TmDeselectVars

Parameters

None.

Keywords

None.

Discussion

This procedure is used to remove variables from the list of selected variables. Usually, this routine is called before a new variable selection is made with TmAddSelectedVars.

Example

This example demonstrates how variables from a VDA Tool are added to the variable selection list, exported to another VDA Tool, and deleted from the variable selection list.

; No variables are currently on the variable selection list.
PRINT, TmEnumerateSelectedVars()
; The variable HAN is displayed in the VDA Tool WzPlot_0.
PRINT, TmEnumerateVars('WzPlot_0')
; Add variable HAN in VDA Tool WzPlot to selected variables list.
TmAddSelectedVars, 'WzPlot_0', 'HAN'
; Enumerate variables on the selected variables list.
PRINT, TmEnumerateSelectedVars()
; Export variable on selection list to another active VDA Tool.
TmExportSelection, ['WzPlot_2']
; Remove all variables from the variable selection list.
TmDeselectVars
PRINT, TmEnumerateSelectedVars()

See Also

TmAddSelectedVars, TmEnumerateSelectedVars, TmExport,
TmExportSelection