[]
Exports the current multi-document to a disk file.
public void Export(string fileName, OutputRange outputRange, bool showProgress)
Public Sub Export(fileName As String, outputRange As OutputRange, showProgress As Boolean)
| 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. |
Exports the current multi-document to a disk file.
public void Export(string fileName, bool showProgress)
Public Sub Export(fileName As String, showProgress As Boolean)
| 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. |
Exports the current multi-document to a disk file.
public void Export(string fileName)
Public Sub Export(fileName As String)
| Type | Name | Description |
|---|---|---|
| string | fileName | The output file name. The file extension determines the export format. |
Exports the current multi-document to a stream.
public void Export(Stream stream, ExportProvider exportProvider, bool showProgress)
Public Sub Export(stream As Stream, exportProvider As ExportProvider, showProgress As Boolean)
| 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. |
Exports the current multi-document to a stream.
public void Export(Stream stream, ExportProvider exportProvider)
Public Sub Export(stream As Stream, exportProvider As ExportProvider)
| 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. |
Exports the current multi-document to a disk file.
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)
| 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. |
Exports the current multi-document to a stream.
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)
| 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. |