MarkdownOfficeMathExportMode
MarkdownOfficeMathExportMode enumeration
Specifies how Aspose.Words exports OfficeMath to Markdown.
public enum MarkdownOfficeMathExportMode
Values
Name | Value | Description |
---|---|---|
Text | 0 | Export OfficeMath as plain text. |
Image | 1 | Export OfficeMath as image. |
MathML | 2 | Export OfficeMath as MathML. |
Examples
Shows how OfficeMath will be written to the document.
Document doc = new Document(MyDir + "Office math.docx");
MarkdownSaveOptions saveOptions = new MarkdownSaveOptions();
saveOptions.OfficeMathExportMode = MarkdownOfficeMathExportMode.Image;
doc.Save(ArtifactsDir + "MarkdownSaveOptions.OfficeMathExportMode.md", saveOptions);
See Also
- namespace Aspose.Words.Saving
- assembly Aspose.Words