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
Syntaxpublic bool ConvertShapeToOfficeMath { get; set; }Public Property ConvertShapeToOfficeMath As Boolean
Get
Set
public:
property bool ConvertShapeToOfficeMath {
bool get ();
void set (bool value);
}member ConvertShapeToOfficeMath : bool with get, set
Property Value
Type:
Boolean
ExamplesShows how to convert shapes with EquationXML to Office Math objects.
LoadOptions loadOptions = new LoadOptions { ConvertShapeToOfficeMath = false };
Document doc = new Document(MyDir + "Math shapes.docx", loadOptions);
doc.Save(ArtifactsDir + "Document.ConvertShapeToOfficeMath.docx", SaveFormat.Docx);
See Also