ConvertShapeToOfficeMath

LoadOptions.ConvertShapeToOfficeMath property

Ottiene o imposta se convertire le forme con EquationXML in oggetti Office Math.

public bool ConvertShapeToOfficeMath { get; set; }

Esempi

Mostra come convertire forme EquationXML in oggetti Office Math.

LoadOptions loadOptions = new LoadOptions();

// Utilizzare questo flag per specificare se convertire le forme con attributi EquationXML
// agli oggetti Office Math e quindi caricare il documento.
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);
}

Guarda anche