[]
        
(Showing Draft Content)

C1.C1Preview.C1PrintDocument.Export

Export Method

Export(string, OutputRange, bool)

Exports the document to a disk file.

Declaration
public void Export(string fileName, OutputRange outputRange, bool showProgress)
Public Sub Export(fileName As String, outputRange As OutputRange, showProgress As Boolean)
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 document to a disk file.

Declaration
public void Export(string fileName, bool showProgress)
Public Sub Export(fileName As String, showProgress As Boolean)
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 document to a disk file.

Declaration
public void Export(string fileName)
Public Sub Export(fileName As String)
Parameters
Type Name Description
string fileName

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

Export(Stream, ExportProvider, bool)

Exports the document to a stream.

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

The destination stream.

ExportProvider exportProvider

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

bool showProgress

Flag indicating whether to show the progress dialog.

Export(Stream, ExportProvider)

Exports the document to a stream.

Declaration
public void Export(Stream stream, ExportProvider exportProvider)
Public Sub Export(stream As Stream, exportProvider As 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 C1.C1Preview.Export.ExportProviders class.

Export(string, ExportProvider, OutputRange, bool)

Exports the document to a disk file.

Declaration
public void Export(string fileName, ExportProvider exportProvider, OutputRange outputRange, bool showProgress)
Public Sub Export(fileName As String, exportProvider As ExportProvider, outputRange As OutputRange, showProgress As Boolean)
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 C1.C1Preview.Export.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 document to a stream.

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

The destination stream.

ExportProvider exportProvider

The export provider. Use any of the static export providers available on the C1.C1Preview.Export.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.