Product Documentation
Virtuoso Visualization and Analysis XL SKILL Reference
Product Version IC23.1, November 2023

awvDisableRedraw

awvDisableRedraw(
w_windowID
g_disable
)
=> t / nil

Description

Disables or enables redraw of the Waveform window based on the value of the g_disable argument. You might use this function to freeze the Waveform window display, send several plots to the window, then unfreeze the window to display all the plots at once.

The function awvDisableRedraw will be removed in a future release.

Arguments

w_windowID

Waveform window ID.

g_disable

Specifies whether to disable redraw for the specified Waveform window.

Valid values are:

  • t: Redraw is disabled for the specified Waveform window.
  • nil: Redraw is enabled for the specified Waveform window.

Value Returned

t

Redraw status of the specified Waveform window is set successfully.

nil

The specified Waveform window does not exist.

Examples

The following example disables redraw status for the current Waveform window.

awvDisableRedraw(awvGetCurrentWindow() nil)
=> t

The following example enables redraw status for the current Waveform window.

awvDisableRedraw(awvGetCurrentWindow() t)
=> t

Return to top
 ⠀
X