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