awvZoomGraphX
awvZoomGraphX(w_windowID l_minMax[?subwindowx_subwindow] ) =>t/nil
Description
Zooms in or zooms out the graph according to the specified x-axis (independent axis) coordinates.
Arguments
Value Returned
Examples
The following examples zoom in the x axis from x=50ns to x=220ns in the current subwindow of the current Waveform window.
awvZoomGraphX(awvGetCurrentWindow() 50n:220n ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphX(awvGetCurrentWindow() list(50n 220n) ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphX(awvGetCurrentWindow() list("50ns" "220ns") ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphX(awvGetCurrentWindow() 5e-8:2.2e-7 ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
awvZoomGraphX(awvGetCurrentWindow() list(5e-8 2.2e-7) ?subwindow awvGetCurrentSubwindow(awvGetCurrentWindow()))
=> t
Return to top