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.
Arguments
|
Specifies whether to disable redraw for the specified Waveform window. |
Value Returned
|
Redraw status of the specified Waveform window is set successfully. |
|
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