Is there an API (preferably C#) to access the object model of equations created with MS Word's equation editor? I am looking for an API like the chart object to access properties of charts in Excel, for instance.

Any help would be much appreciated.

link|improve this question

I don't believe there is one. – Mitch Wheat Feb 20 '10 at 5:11
feedback

1 Answer

up vote 4 down vote accepted

This called "Office MathML" (OMML) or sometimes "Ecma MathML". You can learn more about it here. You have access to it via the Open XML format. These days, most people are using the OpenXML SDK to access Office's XML vocabulary. Use this namespace:DocumentFormat.OpenXml.Math

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.