IEaxSheet.Id

Syntax

Id: String;

Description

The Id property returns sheet identifier.

Comments

To determine sheet name, use IEaxSheet.Name.

Example

Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier.

Add links to the Express, Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Eax: IEaxAnalyzer;
    Sheet: IEaxSheet;
Begin
    MB := MetabaseClass.Active;
    Eax := MB.ItemById("EXPRESS_SHEETID").Bind As IEaxAnalyzer;
    Sheet := Eax.Sheets.Item(0);
    Debug.WriteLine("Report sheet identifier - " + Sheet.Id);
End Sub UserProc;

After executing the example the console displays identifier of the first report sheet.

See also:

IEaxSheet