用于 MS Word 方程编辑器的 C# API
是否有 API(最好是 C#)来访问使用 MS Word 方程编辑器创建的方程对象模型?例如,我正在寻找像图表对象这样的 API 来访问 Excel 中图表的属性。
任何帮助将不胜感激。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这称为“Office MathML”(OMML) 或有时称为“Ecma MathML”。您可以了解更多信息 这里。您可以通过 Open XML 格式访问它。如今,大多数人都使用 OpenXML SDK 用于访问 Office 的 XML 词汇表。使用 DocumentFormat.OpenXml.Math 命名空间。
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.