Previous Document Next Document

Object Model Reference : Classes : P : PDFVBASettings : Properties : PDFVBASettings.Startup


PDFVBASettings.Startup

Property Startup As pdfDisplayOnStart

Description

Member of PDFVBASettings

The Startup property sets the default Adobe Acrobat Reader viewing mode for a PDF document.

VBA example

The following VBA example publishes the active document to PDF and specifies the thumbnail view as the default viewing mode.

Sub Test()
 With ActiveDocument.PDFSettings
  .Thumbnails = True
  .Startup = pdfThumbnails
 End With
 ActiveDocument.PublishToPDF "C:\MyDocument.pdf"
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.