awvGetSubwindowStripCount
awvGetSubwindowStripCount(w_windowID[?subwindowx_subwindow] ) =>n_stripCount/nil
Description
Returns the total number of strips 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
|
Number of strips plotted in a subwindow of the specified Waveform window. |
|
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