awvResetWindow
awvResetWindow(w_windowID[?forceg_force] ) =>t / nil
Description
Resets the specified Waveform window to the state of a new window.
Contents of the specified window are erased and subwindows whose update statuses are turned on are deleted. To delete all subwindows, regardless of their update statuses, set the ?force argument to t.
The Waveform window remains at their current sizes and locations.
Arguments
|
Specifies whether to delete all subwindows or only those subwindows whose update statuses are turned on. |
Value Returned
Examples
The following example returns IDs of the Waveform windows that are currently open.
awvGetWindowList()
=> (window:3 window:4)
The following example resets the specified Waveform window and deletes only those subwindows whose update statuses are turned on.
awvResetWindow(window(4))
=> t
The following example resets the specified Waveform window and deletes all subwindows, regardless of their update statuses.
awvResetWindow(window(4) ?force t)
=> t
Return to top