export method
export
def export(self, metadata, stream):
...
| Parameter |
Type |
Description |
| metadata |
list |
|
| stream |
io.RawIOBase |
|
export
def export(self, metadata, file_name):
...
| Parameter |
Type |
Description |
| metadata |
list |
|
| file_name |
System.String |
|
export
Exports the document information to the stream.
def export(self, document_info, stream):
...
| Parameter |
Type |
Description |
| document_info |
groupdocs.parser.options.IDocumentInfo |
The document information. |
| stream |
io.RawIOBase |
The output stream. |
export
Exports the document information to the file.
def export(self, document_info, file_name):
...
| Parameter |
Type |
Description |
| document_info |
groupdocs.parser.options.IDocumentInfo |
The document information. |
| file_name |
System.String |
The full path to the output file. |
export
def export(self, text_areas, stream):
...
| Parameter |
Type |
Description |
| text_areas |
list |
|
| stream |
io.RawIOBase |
|
export
def export(self, text_areas, file_name):
...
| Parameter |
Type |
Description |
| text_areas |
list |
|
| file_name |
System.String |
|
export
def export(self, tables, stream):
...
| Parameter |
Type |
Description |
| tables |
list |
|
| stream |
io.RawIOBase |
|
export
def export(self, tables, file_name):
...
| Parameter |
Type |
Description |
| tables |
list |
|
| file_name |
System.String |
|
export
def export(self, barcodes, stream):
...
| Parameter |
Type |
Description |
| barcodes |
list |
|
| stream |
io.RawIOBase |
|
export
def export(self, barcodes, file_name):
...
| Parameter |
Type |
Description |
| barcodes |
list |
|
| file_name |
System.String |
|
export
Exports document data to the stream.
def export(self, document_data, stream):
...
| Parameter |
Type |
Description |
| document_data |
groupdocs.parser.data.DocumentData |
Document data. |
| stream |
io.RawIOBase |
The output stream. |
export
Exports document data to the file.
def export(self, document_data, file_name):
...
| Parameter |
Type |
Description |
| document_data |
groupdocs.parser.data.DocumentData |
Document data. |
| file_name |
System.String |
The full path to the output file. |
See Also