Interface ISlidesViewOptions
- Namespace
- Slidize
- Assembly
- Slidize.Plugins.dll
Represents the presentation view mode for export.
public interface ISlidesViewOptions
Examples
The following example shows how to convert PowerPoint document to PDF format in Notes and Comments view.
[C#]
ISlidesViewOptions viewOptions = new NotesCommentsViewOptions
{
NotesPosition = NotesPositions.BottomTruncated,
CommentsPosition = CommentsPositions.Right
};
PdfConverterOptions options = new();
options.SlidesViewOptions = viewOptions;
PresentationToPdfConverter.Process("pres.pptx", "pres.pdf", options);