Redo;
The Redo method repeats the last cancelled operation.
Sub Macro;
Var
Rep: IPrxReport;
Tab: ITabSheet;
View: ITabView;
Begin
Rep:=PrxReport.ActiveReport;
Tab:=Rep.ActiveSheet.Table;
View:=Tab.View;
If View.RedoCount<>0 Then
View.Redo;
End If;
End Sub Macro;
This example is a macro for a regular report. After the macro has been executed, the last cancelled operation will be repeated.
See also: