Show contents 

Report > Report Assembly Interfaces > IPrxSheet > IPrxSheet.Name

IPrxSheet.Name

Syntax

Name: String;

Description

The Name property determines the name of a regular report page.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Report: IPrxReport;
    Sheet: IPrxSheet;
    s: String;
Begin
    MB := MetabaseClass.Active;
    Report := MB.ItemById("REPORT").Bind As IPrxReport;
    Sheet := Report.ActiveSheet;
    s := Sheet.Name;
End Sub UserProc;

After executing the example the "s" variable contains the name of the active sheet of the regular report. The identifier of the regular report - Report.

Seealso:

IPrxSheet