awvSetYAxisMinorDivisions
awvSetYAxisMinorDivisions(w_windowID x_yNumber x_numMinorDivisions[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>t/nil
Description
Sets 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 is set successfully. |
|
|
The specified Waveform window, subwindow, y-axis number, or the strip number does not exist. |
Examples
The following example sets the number of minor divisions on the y-axis number 1 to 10 in the strip number 3 of the current subwindow in the current Waveform window.
awvSetYAxisMinorDivisions(awvGetCurrentWindow() 1 10 ?stripNumber 3 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
The following example sets the number of minor divisions on the y-axis number 1 to 5 in the strip number 2 in the subwindow 3 of the specified Waveform window.
awvSetYAxisMinorDivisions(window(11) 1 5 ?stripNumber 2 ?subwindow 3)
=> t
Return to top