awvResetAllWindows
awvResetAllWindows( [?forceg_force] ) =>t
Description
Resets all Waveform windows that are returned by awvGetWindowList.
Contents of the windows 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.
Waveform windows remain 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 all Waveform windows and deletes only those subwindows whose update statuses are turned on.
awvResetAllWindows()
=> t
The following example resets all Waveform windows and deletes all subwindows, regardless of their update statuses.
awvResetAllWindows(?force t)
=> t
Return to top