IPrxReport.Name

Syntax

Name: String;

Description

The Name property returns name of the regular report.

Example

Sub Main;
Var
    MB: IMetabase;
    Report: IPrxReport;
    s: String;
Begin
    MB := MetabaseClass.Active;
    Report := MB.ItemById("Report").Bind As IPrxReport;
    s := Report.Name;
End Sub Main;

After executing the example the "s" variable contains the name of the regular report with the Report identifier.

See also:

IPrxReport