awvGetUnusedEntityList
awvGetUnusedEntityList(w_windowID[?subwindowx_subwindow] [?totalx_total] ) =>l_waveformIndexes/nil
Description
Returns a list of integers that have not already been used to identify waveforms in a subwindow.
You can specify the total number of unused waveform indexes to include in the return value
Arguments
Value Returned
|
A list of next lowest integers that have not been used to identify existing waveforms in a subwindow of the specified Waveform window. |
|
Examples
The following example returns a list of 7 unused waveform indexes that have not been used in subwindow 2 of the current Waveform window.
awvGetUnusedEntityList(awvGetCurrentWindow() ?subwindow 2 ?total 7)
=>
(27 28 29 30 31
32 33
)
Return to top