Prototype

procedure BeginUpdate;

Description

Inhibits changes until EndUpdate has been invoked.


Each time a style property is changed, the control must update its contents. Depending on the type of style property changed, it may simply be invalidated, but in other cases the script may need to be re-parsed. Call BeginUpdate if you need to change multiple style settings at once. The changes will not be applied until EndUpdate is called, saving processing time.

See also

EndUpdate