EndUpdate;
The EndUpdate method resumes table rerendering.
The method resumes table rerendering after the IPivot.BeginUpdate method paused it. After calling the method, all the changes that were made in the table in between calling the IPivot.BeginUpdate and the IPivot.EndUpdate methods are also applied.
Executing the example requires a form with the Button1 button, the TabSheetBox component, and the UiErAnalyzer component named UiErAnalyzer1 that is 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 disables table rerendering to accelerate table refreshing.
See also: