Table of Contents

TFlexCelPdfExport.Export Method

Overloads

TFlexCelPdfExport.Export(TStream)

Exports the active sheet of the associated xls workbook to a stream.

Remarks

This method is a shortcut for calling BeginExport/ ExportSheet/EndExport.

Syntax

Unit: FlexCel.Render

procedure TFlexCelPdfExport.Export(const pdfStream: TStream); overload;

Parameters

<-> Parameter Type Description
const pdfStream TStream Stream where the result will be written.

See also

TFlexCelPdfExport.Export(string)

Exports the active sheet of the associated xls workbook to a file.

Remarks

This method is a shortcut for calling BeginExport/ ExportSheet/EndExport.

Syntax

Unit: FlexCel.Render

procedure TFlexCelPdfExport.Export(const fileName: string); overload;

Parameters

<-> Parameter Type Description
const fileName string File to export.

See also