awvDisplayGrid
awvDisplayGrid(w_windowID g_on[?subwindowx_subwindow] ) =>t/nil
Description
Displays or hides grids in a subwindow of the specified Waveform window.
Arguments
Value Returned
|
Grids are displayed or hidden in a subwindow of the specified Waveform window. |
|
Examples
The following example displays grids in the subwindow 1 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvDisplayGrid(win t ?subwindow 1)
=> t
The following example hides grids in the subwindow 4 of the current Waveform window.
win = awvGetCurrentWindow()
=> window:4
awvDisplayGrid(win nil ?subwindow 4)
=> t
Return to top