[]
Exports the current multi-document to a disk file.
public void Export(string fileName, OutputRange outputRange, bool showProgress)
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)
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)
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)
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)
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)
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)
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. |