[]
        
(Showing Draft Content)

C1.C1Preview.C1MultiDocument.Export

Export Method

Export(string, OutputRange, bool)

Exports the current multi-document to a disk file.

Declaration
public void Export(string fileName, OutputRange outputRange, bool showProgress)
Parameters
Type Name Description
string fileName

The output file name. The file extension determines the export format.

OutputRange outputRange

The range of pages to export (use null to export all pages).

bool showProgress

Flag indicating whether to show the progress dialog.

Export(string, bool)

Exports the current multi-document to a disk file.

Declaration
public void Export(string fileName, bool showProgress)
Parameters
Type Name Description
string fileName

The output file name. The file extension determines the export format.

bool showProgress

Flag indicating whether to show the progress dialog.

Export(string)

Exports the current multi-document to a disk file.

Declaration
public void Export(string fileName)
Parameters
Type Name Description
string fileName

The output file name. The file extension determines the export format.

Export(Stream, ExportProvider, bool)

Exports the current multi-document to a stream.

Declaration
public void Export(Stream stream, ExportProvider exportProvider, bool showProgress)
Parameters
Type Name Description
Stream stream

The destination stream.

ExportProvider exportProvider

The export provider. Use any of the static export providers available on the ExportProviders class.

bool showProgress

Flag indicating whether to show the progress dialog.

Export(Stream, ExportProvider)

Exports the current multi-document to a stream.

Declaration
public void Export(Stream stream, ExportProvider exportProvider)
Parameters
Type Name Description
Stream stream

The destination stream.

ExportProvider exportProvider

The export provider. Use any of the static export providers available on the ExportProviders class.

Export(string, ExportProvider, OutputRange, bool)

Exports the current multi-document to a disk file.

Declaration
public void Export(string fileName, ExportProvider exportProvider, OutputRange outputRange, bool showProgress)
Parameters
Type Name Description
string fileName

The output file name. The file extension determines the export format.

ExportProvider exportProvider

The export provider. Use any of the static export providers available on the ExportProviders class.

OutputRange outputRange

The range of pages to export (use null to export all pages).

bool showProgress

Flag indicating whether to show the progress dialog.

Export(Stream, ExportProvider, OutputRange, bool)

Exports the current multi-document to a stream.

Declaration
public void Export(Stream stream, ExportProvider exportProvider, OutputRange outputRange, bool showProgress)
Parameters
Type Name Description
Stream stream

The destination stream.

ExportProvider exportProvider

The export provider. Use any of the static export providers available on the ExportProviders class.

OutputRange outputRange

The range of pages to export (use null to export all pages).

bool showProgress

Flag indicating whether to show the progress dialog.