IgnoreOleData
Contents
[
Hide
]LoadOptions.IgnoreOleData property
Specifies whether to ignore the OLE data.
public bool IgnoreOleData { get; set; }
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.
LoadOptions loadOptions = new LoadOptions() { IgnoreOleData = true };
Document doc = new Document(MyDir + "OLE objects.docx", loadOptions);
doc.Save(ArtifactsDir + "LoadOptions.IgnoreOleData.docx");
See Also
- class LoadOptions
- namespace Aspose.Words.Loading
- assembly Aspose.Words