MarkdownExportType
MarkdownExportType Aufzählung
Typ der Dokumentendarstellung.
public enum MarkdownExportType
Werte
| Name | Wert | Beschreibung |
|---|---|---|
| Sequential | 0 | Rendert alle Elemente einzeln. Eins nach dem anderen. |
| TextOnly | 1 | Rendert nur den Text. |
| Visual | 2 | Rendert alle Elemente, gruppierte Elemente werden zusammen gerendert. |
Beispiele
Beispiel:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
MarkdownSaveOptions markdownSaveOptions = new MarkdownSaveOptions
{
ShowHiddenSlides = true,
ShowSlideNumber = true,
Flavor = Flavor.Github,
ExportType = MarkdownExportType.Sequential,
NewLineType = NewLineType.Windows
};
pres.Save("doc.md", new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }, SaveFormat.Md, markdownSaveOptions);
}
Siehe auch
- Namensraum Aspose.Slides.Export
- Assembly Aspose.Slides