MarkdownExportType
MarkdownExportType enumeration
Type of rendering document.
public enum MarkdownExportType
Values
Name | Value | Description |
---|---|---|
Sequential | 0 | Render all items separately. One by one. |
TextOnly | 1 | Render only text. |
Visual | 2 | Render all items, items that are grouped - render together. |
Examples
Example:
[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);
}
See Also
- namespace Aspose.Slides.DOM.Export.Markdown.SaveOptions
- assembly Aspose.Slides