awvGetStripNumbersList
awvGetStripNumbersList(w_windowID[?subwindowx_subwindow] ) =>l_stripNumbersList/nil
Description
Returns the strip numbers of traces plotted in a subwindow of the specified Waveform window.
Arguments
|
Identification number of the subwindow, which is found in the top-right corner of the subwindow. If you do not specify this argument, the current subwindow is used. |
|
Value Returned
|
A list containing strip numbers of the traces plotted in a subwindow of the specified Waveform window. |
|
Examples
The following example returns strip numbers of the traces plotted in the subwindow 4 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvGetStripNumbersList(win ?subwindow 4)
=>
(1 3 4 5 6
7 8 9 10 11
12 13 14 2
)
The following example returns the strip numbers of the traces plotted in the subwindow 3 of the specified Waveform window.
awvGetStripNumbersList(window(5) ?subwindow 3)
=> (14 1 2 3)
Return to top