awvGetYAxisUseStepValue
awvGetYAxisUseStepValue(w_windowID x_yNumber[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>t_isStepSizeUsed/nil
Description
Indicates whether the step size is used for the major divisions of the specified y axis in the specified graph.
Arguments
Value Returned
|
Indicates whether the step size is used for the major divisions of 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 indicates that the step size for the major divisions of y-axis number 1 is used for the strip number 2 in the subwindow 3 of the specified Waveform window.
awvGetYAxisUseStepValue(window(10) 1 ?stripNumber 2 ?subwindow 3)
=> "true"
The following example indicates that the step size for the major divisions of y-axis number 1 is not used for the strip number 3 in the subwindow 2 of the specified Waveform window.
awvGetYAxisUseStepValue(window(11) 1 ?stripNumber 3 ?subwindow 2)
=> "false"
Return to top