Table of Contents

FlexCelReport.Run Method

Overloads

FlexCelReport.Run(ExcelFile)

Executes the report, reading from an ExcelFile and writing the results to it again.

Remarks

Note that RecalcMode, SemiAbsoluteReferences RecalcVersion and AllowOverwritingFiles values used will be the ones on aWorkbook, not the ones on this report.

Syntax

Namespace: FlexCel.Report

public void Run(ExcelFile aWorkbook)

Parameters

<-> Parameter Type Description
aWorkbook ExcelFile ExcelFile that contains the template file, and that will contain the generated file once this method runs.

See also

FlexCelReport.Run(String, String)

Executes the report, reading from a file and writing to a file.

Syntax

Namespace: FlexCel.Report

public void Run(String templateFileName, String outFileName)

Parameters

<-> Parameter Type Description
templateFileName String File with the template to use.
outFileName String File to create.

See also

FlexCelReport.Run(Stream, Stream)

Executes the report, reading from a stream and writing to a stream.

Syntax

Namespace: FlexCel.Report

public void Run(Stream templateStream, Stream outStream)

Parameters

<-> Parameter Type Description
templateStream Stream Stream with the template.
outStream Stream Stream where the result will be written.

See also

FlexCelReport.Run(Stream, Stream, TFileFormats)

Executes the report, reading from a stream and writing to a stream.

Syntax

Namespace: FlexCel.Report

public void Run(Stream templateStream, Stream outStream, TFileFormats fileFormat)

Parameters

<-> Parameter Type Description
templateStream Stream Stream with the template.
outStream Stream Stream where the result will be written.
fileFormat TFileFormats File format in which the resulting file will be saved.

See also