ITermEdit.BeginUpdate

Syntax

BeginUpdate;

Description

The BeginUpdate method disables a set of internal mechanisms to speed up inserting of terms into the component.

Comments

After calling the BeginUpdate method and before calling the EndUpdate method the following mechanisms will be disabled in the component:

NOTE. This method does not disable component rerendering. To disable rerendering, use the corresponding methods BeginUpdate/EndUpdate of the form.

Example

Sub InsertTerm(Control: ITermEdit);
Begin
    Control.BeginUpdate;
    //...
    //Insert terms
    //...
    Control.EndUpdate;
End Sub InsertTerm;

The specified example shows general principles of using the BeginUpdate/EndUpdate methods for the TermEdit component.

See also:

ITermEdit