Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# API for MS Word Equation editor

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.

like image 451
Dervin Thunk Avatar asked Feb 20 '10 02:02

Dervin Thunk


People also ask

Bahasa C digunakan untuk apa?

Meskipun C dibuat untuk memprogram sistem dan jaringan komputer namun bahasa ini juga sering digunakan dalam mengembangkan software aplikasi. C juga banyak dipakai oleh berbagai jenis platform sistem operasi dan arsitektur komputer, bahkan terdapat beberepa compiler yang sangat populer telah tersedia.

C dalam Latin berapa?

C adalah huruf ketiga dalam alfabet Latin. Dalam bahasa Indonesia, huruf ini disebut ce (dibaca [tʃe]).

Bahasa C dibuat pertama kali oleh siapa dan tahun berapa?

Bahasa pemrograman C ini dikembangkan antara tahun 1969 – 1972 oleh Dennis Ritchie. Yang kemudian dipakai untuk menulis ulang sistem operasi UNIX. Selain untuk mengembangkan UNIX, bahasa C juga dirilis sebagai bahasa pemrograman umum.


1 Answers

This is 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 the DocumentFormat.OpenXml.Math namespace.

like image 119
Todd Main Avatar answered Sep 27 '22 23:09

Todd Main