MarkdownOfficeMathExportMode
MarkdownOfficeMathExportMode enumeration
Gibt an, wie Aspose.Words OfficeMath nach Markdown exportiert.
public enum MarkdownOfficeMathExportMode
Werte
Name | Wert | Beschreibung |
---|---|---|
Text | 0 | OfficeMath als einfachen Text exportieren. |
Image | 1 | OfficeMath als Bild exportieren. |
MathML | 2 | OfficeMath als MathML exportieren. |
Beispiele
Zeigt, wie OfficeMath in das Dokument geschrieben wird.
Document doc = new Document(MyDir + "Office math.docx");
MarkdownSaveOptions saveOptions = new MarkdownSaveOptions();
saveOptions.OfficeMathExportMode = MarkdownOfficeMathExportMode.Image;
doc.Save(ArtifactsDir + "MarkdownSaveOptions.OfficeMathExportMode.md", saveOptions);
Siehe auch
- namensraum Aspose.Words.Saving
- Montage Aspose.Words