awvDeleteWaveform
awvDeleteWaveform(w_windowID x_index[?subwindowx_subwindow] ) =>t/nil
Description
Deletes the specified waveform from a subwindow of the specified Waveform window.
Arguments
Value Returned
|
Waveform cannot be deleted because the specified Waveform window, subwindow, or the waveform ID does not exist. |
Examples
The following example deletes the waveform with the ID 5 from the subwindow 3 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvDeleteWaveform(win 5 ?subwindow 3)
=> t
The following example deletes the waveform with the ID 8 from the current subwindow of the specified Waveform window.
awvDeleteWaveform(window(89) 8)
=> t
Return to top