OfficeMathExportMode

MarkdownSaveOptions.OfficeMathExportMode property

Anger hur OfficeMath ska skrivas till utdatafilen. Standardvärdet ärText .

public MarkdownOfficeMathExportMode OfficeMathExportMode { get; set; }

Exempel

Visar hur OfficeMath kommer att skrivas till dokumentet.

Document doc = new Document(MyDir + "Office math.docx");

MarkdownSaveOptions saveOptions = new MarkdownSaveOptions();
saveOptions.OfficeMathExportMode = MarkdownOfficeMathExportMode.Image;

doc.Save(ArtifactsDir + "MarkdownSaveOptions.OfficeMathExportMode.md", saveOptions);

Se även