awvSetYLimit
awvSetYLimit(w_windowID x_yNumber l_minMax[?stripNumberx_stripNumber] [?subwindowx_subwindow] ) =>t/nil
Description
Sets the display limits of the specified y axis for the waveform with the specified strip number in a subwindow. If you do not specify the ?stripNumber argument, the limits are applied when the subwindow is in composite mode.
Arguments
Value Returned
|
Display limits of the specified y-axis number are set successfully. |
|
|
The specified Waveform window, subwindow, y-axis number, or the strip number does not exist. |
Examples
The following example sets the display limit of y-axis number 4 from -400 to 400. This setting takes effect only in composite mode.
awvSetYLimit(window(34) 4 list(-400 400))
=> t
The following example sets the display limit of y-axis number 2 in the strip number 4 of the current subwindow in the specified Waveform window. This setting takes effect only in strip mode.
awvSetYLimit(window(34) 2 list(-400 400) ?stripNumber 4)
=> t
Return to top