IPivot.EndUpdate

Syntax

EndUpdate;

Description

The EndUpdate method resumes table copying.

Comments

After calling the method, all the changes that were performed in the table in between calling the BeginUpdate and the EndUpdate methods, are also applied.

Example

Executing the example requires a form with the Button1 button, the TabSheetBox component, and athe UiErAnalyzer component named UiErAnalyzer1 that acts as a data source for the TabSheetBox component.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    OLAP: IEaxAnalyzer;
    Pivot: IPivot;
Begin
    OLAP := UiErAnalyzer1.ErAnalyzer;
    Pivot := OLAP.Pivot;
    Pivot.BeginUpdate;
    //...
    //Change table parameters
    //...
    Pivot.EndUpdate;
End Sub Button1OnClick;

Clicking the button deactivates table copying to accelerate process of data table updating.

See also:

IPivot