Show contents 

Express > Express Assembly Interfaces > IExAnalyzerExporter > IExAnalyzerExporter.ExportCellImages

IExAnalyzerExporter.ExportCellImages

Syntax

ExportCellImages: Boolean;

Description

The ExportCellImages property determines whether the images contained in the table cells will be exported.

Comments

The property is set to True by default.

If the property is set to True, images contained in the table cells will be exported during the export (for example, conditional formatting images). If the property is set to False, the images are not exported.

Example

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

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    ExpExspr: IExAnalyzerExporter;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    ExpExspr := New ExAnalyzerExporter.Create;
    ExpExspr.ExAnalyzer := Expr;
    ExpExspr.ExportCellImages := False;
    ExpExspr.ExportToFile("C:\Express.pdf""PDF");
End Sub UserProc;

After executing the example the express report is exported to the C:\Express.pdf file. If the cells of the express report table contain any images, these images are not exported.

See also:

IExAnalyzerExporter