awvSetDisplayMode
awvSetDisplayMode(w_windowID t_mode[?subwindowx_subwindow] ) =>t/ nil
Description
Sets display mode of a subwindow of the specified Waveform window.
Arguments
Value Returned
|
The specified Waveform window, subwindow, or display mode does not exist. |
Examples
The following example sets display mode of subwindow 2 of the current Waveform window to smith.
win = awvGetCurrentWindow()
=> window:89
awvSetDisplayMode(win "smith" ?subwindow 2)
=> t
The following example sets display mode of the current subwindow of the specified Waveform window to strip.
awvSetDisplayMode(window(90) "strip")
=> t
Return to top