LoadOptionsConvertShapeToOfficeMath Property

Gets or sets whether to convert shapes with EquationXML to Office Math objects.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool ConvertShapeToOfficeMath { get; set; }

Property Value

Type: Boolean
Examples
Shows how to convert shapes with EquationXML to Office Math objects.
LoadOptions loadOptions = new LoadOptions { ConvertShapeToOfficeMath = false };

// Specify load option to convert math shapes to office math objects on loading stage
Document doc = new Document(MyDir + "Math shapes.docx", loadOptions);
doc.Save(ArtifactsDir + "Document.ConvertShapeToOfficeMath.docx", SaveFormat.Docx);
See Also