RedoEx(Count: Integer);
Count. The number of operations to be repeated.
The RedoEx method repeats several cancelled operations, the number of which is passed as the Count parameter.
Sub Macro;
Var
Rep: IPrxReport;
Tab: ITabSheet;
View: ITabView;
i: Integer;
Begin
Rep:=PrxReport.ActiveReport;
Tab:=Rep.ActiveSheet.Table;
View:=Tab.View;
i:=Tab.Cell(0,0).Value As integer;
If View.RedoCount>=i Then
View.RedoEx(i);
End If;
End Sub Macro;
This example is a macro for a regular report. After executing this macro the last undone operations are repeated. The number of operations is specified in he A0 cell.
See also: