LoadOptions.ConvertShapeToOfficeMath

LoadOptions ConvertShapeToOfficeMath property. Gets or sets whether to convert shapes with EquationXML to Office Math objects. Default is false.

LoadOptions.ConvertShapeToOfficeMath property

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

public bool ConvertShapeToOfficeMath { get; set; }

Examples

Shows how to convert EquationXML shapes to Office Math objects.

LoadOptions loadOptions = new LoadOptions();
loadOptions.ConvertShapeToOfficeMath = true;

Converter.Create()
    .From(MyDir + "Math shapes.docx", loadOptions)
    .To(ArtifactsDir + "LoadOptions.ConvertShapeToOfficeMath.pdf")
    .Execute();

See Also