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

awvGetSubwindowStripCount

awvGetSubwindowStripCount(
w_windowID
[ ?subwindow x_subwindow ]
)
=> n_stripCount / nil

Description

Returns the total number of strips 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

n_stripCount

Number of strips plotted in a subwindow of the specified Waveform window.

nil

The specified Waveform window or subwindow does not exist.

Examples

The following example returns the total number of strips plotted in the subwindow 3 of the current Waveform window.

win=awvGetCurrentWindow()
=> window:5
awvGetSubwindowStripCount(win ?subwindow 3)
=> 14

The following example returns the total numbers of strips plotted in the subwindow 2 of the specified Waveform window.

awvGetSubwindowStripCount(window(6) ?subwindow 2)
=> 9

Return to top
 ⠀
X