Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzeCore > IEaxAnalyzeCore.PagesCount

IEaxAnalyzeCore.PagesCount

Syntax

PagesCount: Integer;

Description

The PagesCount property returns the number of report pages that will be printed using the current page parameters.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    i: Integer;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    i := Expr.PagesCount;
End Sub UserProc;

After executing the example the variable contains the number of pages, on which the express report was printed. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzeCore