ConvertShapeToOfficeMath

LoadOptions.ConvertShapeToOfficeMath property

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

public bool ConvertShapeToOfficeMath { get; set; }

Examples

Shows how to convert EquationXML shapes to Office Math objects.

LoadOptions loadOptions = new LoadOptions();

// Use this flag to specify whether to convert the shapes with EquationXML attributes
// to Office Math objects and then load the document.
loadOptions.ConvertShapeToOfficeMath = isConvertShapeToOfficeMath;

Document doc = new Document(MyDir + "Math shapes.docx", loadOptions);

if (isConvertShapeToOfficeMath)
{
    Assert.AreEqual(16, doc.GetChildNodes(NodeType.Shape, true).Count);
    Assert.AreEqual(34, doc.GetChildNodes(NodeType.OfficeMath, true).Count);
}
else
{
    Assert.AreEqual(24, doc.GetChildNodes(NodeType.Shape, true).Count);
    Assert.AreEqual(0, doc.GetChildNodes(NodeType.OfficeMath, true).Count);
}

See Also