awvSetXScale
awvSetXScale(w_windowID t_scale[?subwindowx_subwindow] ) =>t/nil
Description
Sets display mode of x axis in a subwindow of the specified Waveform window.
Arguments
|
Identification number of the subwindow, which is found in the top-right corner of the subwindow. If you do not specify this argument, the current subwindow is used. |
|
Value Returned
Examples
The following example sets display mode of x axis to linear in the subwindow 3 of the current Waveform window.
awvSetXScale(awvGetCurrentWindow() "linear" ?subwindow 3)
=> t
The following example sets display mode of x axis to logarithmic in the current subwindow of the specified Waveform window.
awvSetXScale(window(38) "log")
=> t
Return to top