export method

export(self, file_path, format)

Exports the metadata properties to a file.


def export(self, file_path, format):
    ...
Parameter Type Description
file_path System.String The full name of the output file.
format groupdocs.metadata.export.ExportFormat The format of the output file.

export(self, document, format)

Exports the metadata properties to a stream.


def export(self, document, format):
    ...
Parameter Type Description
document io.RawIOBase The full name of the output file.
format groupdocs.metadata.export.ExportFormat The format of the output file.

export(self, file_path, format, export_options)

Exports the metadata properties to a file.


def export(self, file_path, format, export_options):
    ...
Parameter Type Description
file_path System.String The full name of the output file.
format groupdocs.metadata.export.ExportFormat The format of the output file.
export_options groupdocs.metadata.export.ExportOptions Additional options to use when exporting a document.

export(self, document, format, export_options)

Exports the metadata properties to a stream.


def export(self, document, format, export_options):
    ...
Parameter Type Description
document io.RawIOBase The full name of the output file.
format groupdocs.metadata.export.ExportFormat The format of the output file.
export_options groupdocs.metadata.export.ExportOptions Additional options to use when exporting a document.

See Also