awvGetYAxisMajorDivisions
awvGetYAxisMajorDivisions(w_windowID x_yNumber[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>x_numMajorDivisions/nil
Description
Returns the number of major divisions that are set 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 major divisions set 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 major divisions set on the y-axis number 1 in the strip number 3 of the current subwindow in the current Waveform window.
awvGetYAxisMajorDivisions(awvGetCurrentWindow() 1 ?stripNumber 3 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
The following example returns the number of major divisions set on the y-axis number 1 in the strip number 2 in the subwindow 3 of the specified Waveform window.
awvGetYAxisMajorDivisions(window(11) 1 ?stripNumber 2 ?subwindow 3)
=> t
Return to top