Object Model Reference : Classes : P : PDFVBASettings : Properties : PDFVBASettings.Startup |
Property Startup As pdfDisplayOnStart
Member of PDFVBASettings
The Startup property sets the default Adobe Acrobat Reader viewing mode for a PDF document.
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 |
Copyright 2013 Corel Corporation. All rights reserved.