Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

awvGetStripNumbersList

awvGetStripNumbersList(
w_windowID
[ ?subwindow x_subwindow ]
)
=> l_stripNumbersList / nil

Description

Returns the strip numbers of traces plotted in a subwindow of the specified Waveform window.

Arguments

w_windowID

Waveform window ID.

?subwindow x_subwindow

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

l_stripNumbersList

A list containing strip numbers of the traces plotted in a subwindow of the specified Waveform window.

nil

The specified Waveform window or subwindow does not exist.

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
 ⠀
X