IPrxReport.Options

Syntax

Options: IPrxReportOptions;

Description

The Options property returns the object that contains regular report settings.

Example

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:

IPrxReport