Table of Contents

NotesCommentsViewOptions class

Provides options that control the view of notes and comments in exported document.

Inheritance:NotesCommentsViewOptionsSlidesViewOptions

The NotesCommentsViewOptions type exposes the following members:

Constructors

Constructor Description
init Initializes a new instance of the NotesCommentsViewOptions class.

Properties

Property Description
notes_position Returns or sets the position of the notes on the page.
comments_position Returns or sets the position of the comments on the page.
comments_area_color Returns or sets the color of comments area
(Applies only if comments are displayed on the right).
comments_area_width Returns or sets the width of the comment output area in pixels
(Applies only if comments are displayed on the right).
show_comments_by_no_author Returns or sets the visibility of comments that do not have an author. If true then comments
will be displayed.
(Applies only if comments are displayed).

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