HandoutViewOptions class

HandoutViewOptions class #

Represents the handout presentation view mode for export.

Inheritance:HandoutViewOptionsSlidesViewOptions

The HandoutViewOptions type exposes the following members:

Constructors #

Constructor Description
__init__ Initializes a new instance of the HandoutViewOptions class.

Properties #

Property Description
handout Specifies how many slides and in what sequence will be placed on the page HandoutViewType.
print_slide_numbers Specifies whether or not to print the displayed slide numbers.
print_frame_slide Specifies whether to draw frames around the displayed slides or not.
print_comments Specifies whether or not to display comments on slides

Examples #

The following example shows how to convert PowerPoint document to PDF in Handout view.

options = slidize.PdfConverterOptions()
slides_view_options = slidize.HandoutViewOptions()
slides_view_options.handout = slidize.HandoutViewType.HANDOUTS_4_HORIZONTAL
slides_view_options.print_slide_numbers = False
slides_view_options.print_frame_slide = False
slides_view_options.print_comments = True
options.slides_view_options = slides_view_options
slidize.PresentationToPdfConverter.process("pres.pptx", "pres.pdf", options)

See Also #