awvGetYAxisMinorDivisions
awvGetYAxisMinorDivisions(w_windowID x_yNumber[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>x_minorDivisions/nil
Description
Returns the number of minor divisions on the scale of the specified y axis of a strip in the specified subwindow of a Waveform window.
Arguments
Value Returned
|
Number of the minor divisions on the scale of the specified y axis in the specified graph. |
|
|
The specified Waveform window, subwindow, y-axis number, or the strip number does not exist. |
Examples
The following example returns the number of minor divisions on the y-axis number 1 in the strip number 3 of the current subwindow in the current Waveform window.
awvGetYAxisMinorDivisions(awvGetCurrentWindow() 1 ?stripNumber 3 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> 10
The following example returns the number of major divisions on the y-axis number 1 in the strip number 2 in the subwindow 3 of the specified Waveform window.
awvGetYAxisMinorDivisions(window(11) 1 ?stripNumber 2 ?subwindow 3)
=> 5
Return to top