SlidesViewOptions class

SlidesViewOptions class #

Represents the presentation view mode for export.

The SlidesViewOptions type exposes the following members:

Examples #

The following example shows how to convert PowerPoint document to PDF format in Notes and Comments view.

view_options = slidize.NotesCommentsViewOptions()
view_options.notes_position = slidize.NotesPosition.BOTTOM_TRUNCATED
view_options.comments_position = slidize.CommentsPosition.RIGHT
options = slidize.PdfConverterOptions()
options.slides_view_options = view_options
slidize.PresentationToPdfConverter.process("pres.pptx", "pres.pdf", options)

See Also #