Options: IPrxReportOptions;
The Options property returns the object that contains regular report settings.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Options: IPrxReportOptions;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Options := Report.Options;
End Sub Main;
After executing the example the variable Options contains settings of the regular report with the identifier Report.
See also: