awvRedisplayWindow
awvRedisplayWindow(
w_windowID
[ ?readData g_readData ]
)
=> t / nil
Description
Refreshes the display of the specified Waveform window.
Arguments
|
w_windowID
|
Waveform window ID.
|
|
?readData g_readData
|
|
|
Specifies whether to read simulation data.
Valid values are:
-
t: Reads simulation data, refreshes the Waveform window with new data, and updates traces, if required. -
nil: Refreshes display of the Waveform window.
|
Value Returned
|
t
|
Waveform window is refreshed successfully.
|
|
nil
|
The specified Waveform window does not exist.
|
Examples
The following example refreshes the display of the current Waveform window.
awvRedisplaySubwindow(awvGetCurrentWindow() ?readData nil)
=> t
Return to top