OfficeMathExportMode

MarkdownSaveOptions.OfficeMathExportMode property

Specifies how OfficeMath will be written to the output file. Default value is Text.

public MarkdownOfficeMathExportMode OfficeMathExportMode { get; set; }

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