Application.SetRedraw

Application.SetRedraw (

boolean Redraw = true )

Description

Controls the redrawing of all objects in the application. This action is useful if you are performing a series of actions that cause redrawing on the page. Using this action, you can force all changes to appear at once rather than having the page redraw itself multiple times.

Parameters

Redraw

(boolean) Whether to make the application redraw objects in the application:

VALUE

DESCRIPTION

true

Redraw objects. (Default)

false

Don't redraw objects.

Returns

Nothing. You can use Application.GetLastError to determine whether this action failed, and why.

See also: Related Actions