ignore_ole_data property

LoadOptions.ignore_ole_data property

Specifies whether to ignore the OLE data.

@property
def ignore_ole_data(self) -> bool:
    ...

@ignore_ole_data.setter
def ignore_ole_data(self, value: bool):
    ...

Remarks

Ignoring OLE data may reduce memory consumption and increase performance without data lost in a case when destination format does not support OLE objects.

The default value is False.

Examples

Shows how to ingore OLE data while loading.

# Ignoring OLE data may reduce memory consumption and increase performance
# without data lost in a case when destination format does not support OLE objects.
load_options = aw.loading.LoadOptions()
load_options.ignore_ole_data = True
doc = aw.Document(MY_DIR + "OLE objects.docx", load_options)

doc.save(ARTIFACTS_DIR + "LoadOptions.IgnoreOleData.docx")

See Also