Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

awvDeleteAllWaveforms

awvDeleteAllWaveforms(
w_windowID
[ ?subwindow x_subwindow ]
)
=> t / nil

Description

Deletes all waveforms from a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

?subwindow x_subwindow

Identification number of the subwindow (found in the top-right corner of the subwindow) from which waveforms are to be deleted.

If you do not specify this argument, waveforms are deleted from the current subwindow.

Value Returned

t

All waveforms are deleted from the subwindow.

nil

Waveforms cannot be deleted because the specified Waveform window or the subwindow does not exist.

Examples

The following example deletes all waveforms from the subwindow 2 of the current Waveform window.

win = awvGetCurrentWindow()
=> window:4
awvDeleteAllWaveforms(win ?subwindow 2)
=> t

The following example deletes all waveforms from the current subwindow of the specified Waveform window.

awvDeleteAllWaveforms(window(5))
=> t

Return to top
 ⠀
X