awvGetSubwindowList
awvGetSubwindowList(w_windowID[?allg_all] ) =>l_subwindows/nil
Description
Returns a list of subwindows whose update statuses are turned on.
To return a list of all subwindows, including those whose updates statuses are turned off, set the ?all argument to t.
Arguments
|
Specifies whether the function returns a list of all subwindows of the specified Waveform window. |
Value Returned
Examples
The following example returns a list of all subwindows of the current Waveform window. The list also includes the subwindows whose update statuses are turned off.
win = awvGetCurrentWindow()
=> window:5
awvGetSubwindowList(win ?all t)
=> (1 2 3 4)
The following example returns a list of only those subwindows whose update statuses are turned on.
win = awvGetCurrentWindow()
=> window:6
awvGetSubwindowList(win ?all nil)
=> (2 3)
Return to top