awvDeleteSubwindow
awvDeleteSubwindow(w_windowID[?subwindowx_subwindow] ) =>t/nil
Description
Deletes a subwindow from the specified Waveform window.
Arguments
|
Identification number of the subwindow (found in the top-right corner of the subwindow) to be deleted. If you do not specify this argument, the current subwindow is deleted. |
|
Value Returned
|
Subwindow cannot be deleted because the specified Waveform window or the subwindow does not exist. |
Examples
The following example deletes the subwindow 4 from the current Waveform window.
win = awvGetCurrentWindow()
awvDeleteSubwindow(win ?subwindow 4)
=> t
Return to top