MarkdownOfficeMathExportMode

MarkdownOfficeMathExportMode enumeration

Gibt an, wie Aspose.Words OfficeMath nach Markdown exportiert.

public enum MarkdownOfficeMathExportMode

Werte

NameWertBeschreibung
Text0OfficeMath als einfachen Text exportieren.
Image1OfficeMath als Bild exportieren.
MathML2OfficeMath 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