ViewOptions class

ViewOptions class

The rendering options.

The ViewOptions type exposes the following members:

Methods

Method Description
rotate_page Applies the clockwise rotation to a page.
rotate_page_int32

Properties

Property Description
page_rotations The page rotation.
watermark The text watermark to be applied to each page.
archive_options The archive files view options. (inherited from BaseViewOptions)
cad_options The CAD drawing view options. (inherited from BaseViewOptions)
default_font_name The default font for a document used during rendering when a required font is missing. (inherited from BaseViewOptions)
email_options The email messages view options. (inherited from BaseViewOptions)
mail_storage_options The mail storage data files view options. (inherited from BaseViewOptions)
outlook_options The Microsoft Outlook data files view options. (inherited from BaseViewOptions)
pdf_options The PDF document view options. (inherited from BaseViewOptions)
presentation_options The presentation files view options. (inherited from BaseViewOptions)
project_management_options The project management files view options. (inherited from BaseViewOptions)
remove_comments The property disables rendering comments when set to True. By default it is False, so all comments are displayed. (inherited from BaseViewOptions)
render_comments The property enables or disables rendering comments. (inherited from BaseViewOptions)
render_hidden_pages The property enables rendering of hidden pages. (inherited from BaseViewOptions)
render_notes The property enables rendering notes and annotations for some formats. (inherited from BaseViewOptions)
spreadsheet_options The spreadsheet files view options. (inherited from BaseViewOptions)
text_options The text options for rendering text files. (inherited from BaseViewOptions)
visio_rendering_options The Visio files view options. (inherited from BaseViewOptions)
web_document_options The Web files view options. (inherited from BaseViewOptions)
word_processing_options The Word processing files view options. (inherited from BaseViewOptions)

Example

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import PdfViewOptions

with Viewer("sample.pptx") as viewer:
    view_options = PdfViewOptions("output.pdf")
    view_options.render_notes = True
    viewer.view(view_options)

See Also