awvSetWaveformDisplayStatus
awvSetWaveformDisplayStatus(w_windowID x_waveIndex g_enable[?subwindowx_subwindow] ) =>t/nil
Description
Displays or hides a waveform in a subwindow of the specified Waveform window.
You can use this function to hide a waveform without deleting it.
Arguments
Value Returned
|
The specified Waveform window, subwindow, or the waveform index does not exist. |
Examples
The following example returns the indexes and signal names of the waveforms plotted in the subwindow 2 of the current Waveform window.
win=awvGetCurrentWindow()
=> window:110
awvGetWaveNameList(win ?subwindow 2)
=>
((26 17 18 19)
("/net027" "/net028" "/net029" "/net030")
)
The following example hides the waveform of the signal net030 plotted in the subwindow 2 of the current Waveform window.
awvSetWaveformDisplayStatus(win 19 nil ?subwindow 2)
=> t
Return to top