awvDeleteAllWaveforms
awvDeleteAllWaveforms(w_windowID[?subwindowx_subwindow] ) =>t/nil
Description
Deletes all waveforms from a subwindow of the specified Waveform window.
Arguments
Value Returned
|
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