awvClearWindowHistory
awvClearWindowHistory(w_windowID[?forceg_force] ) =>t/nil
Description
Erases the contents of the specified Waveform window.
This function deletes the waveforms, title, date stamp, and labels stored in the internal memory. By default, this function operates only on the subwindows whose update statuses are turned on.
Arguments
|
Specifies whether the function operates on all subwindows of the specified Waveform window. |
Value Returned
|
Contents of the Waveform window cannot be erased because the specified Waveform window does not exist. |
Examples
The following example erases contents from all subwindows of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvClearWindowHistory(win ?force t)
=> t
The following example erases contents only from the subwindows whose update statuses are turned on in the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvClearWindowHistory(win)
=> t
Return to top