view_options property
Document.view_options property
Provides options to control how the document is displayed in Microsoft Word.
@property
def view_options(self) -> aspose.words.settings.ViewOptions:
...
Examples
Shows how to set a custom zoom factor, which older versions of Microsoft Word will apply to a document upon loading.
doc = aw.Document()
builder = aw.DocumentBuilder(doc=doc)
builder.writeln('Hello world!')
doc.view_options.view_type = aw.settings.ViewType.PAGE_LAYOUT
doc.view_options.zoom_percent = 50
self.assertEqual(aw.settings.ZoomType.CUSTOM, doc.view_options.zoom_type)
self.assertEqual(aw.settings.ZoomType.NONE, doc.view_options.zoom_type)
doc.save(file_name=ARTIFACTS_DIR + 'ViewOptions.SetZoomPercentage.doc')
Shows how to set a custom zoom type, which older versions of Microsoft Word will apply to a document upon loading.
doc = aw.Document()
builder = aw.DocumentBuilder(doc=doc)
builder.writeln('Hello world!')
# Set the "ZoomType" property to "ZoomType.PageWidth" to get Microsoft Word
# to automatically zoom the document to fit the width of the page.
# Set the "ZoomType" property to "ZoomType.FullPage" to get Microsoft Word
# to automatically zoom the document to make the entire first page visible.
# Set the "ZoomType" property to "ZoomType.TextFit" to get Microsoft Word
# to automatically zoom the document to fit the inner text margins of the first page.
doc.view_options.zoom_type = zoom_type
doc.save(file_name=ARTIFACTS_DIR + 'ViewOptions.SetZoomType.doc')
See Also
- module aspose.words
- class Document