awvSetYAxisStepValue
awvSetYAxisStepValue(w_windowID x_yNumber x_stepSize[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>t/nil
Description
Sets the step size for the major divisions of the specified y axis of a strip in the specified subwindow of a Waveform window. The step value indicates the spacing between major divisions of y axis.
Arguments
Value Returned
|
Step size for the major divisions 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 step size for the major divisions of the y-axis number 1 to 20mV in the currently selected strip of subwindow 2 in the specified Waveform window.
awvSetYAxisStepValue(window(14) 1 20mV ?subwindow 2)
=> t
The following example sets the step size for the major divisions of the y-axis number 1 to 20mV in the strip number 3 of subwindow 4 in the specified Waveform window.
awvSetYAxisStepValue(window(15) 1 2e-2 ?stripNumber 3 ?subwindow 4)
=> t
Return to top