ConvertShapeToOfficeMath

LoadOptions.ConvertShapeToOfficeMath property

Ruft ab oder legt fest, ob Formen mit EquationXML in Office Math-Objekte konvertiert werden sollen.

public bool ConvertShapeToOfficeMath { get; set; }

Beispiele

Zeigt, wie EquationXML-Formen in Office Math-Objekte konvertiert werden.

LoadOptions loadOptions = new LoadOptions();

// Verwenden Sie dieses Flag, um anzugeben, ob die Formen mit EquationXML-Attributen konvertiert werden sollen
// zu Office Math-Objekten und laden Sie dann das Dokument.
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);
}

Siehe auch