Previous Document Next Document
PDFVBASettings.Startup

Property Startup As pdfDisplayOnStart

Member of PDFVBASettings

The Startup property sets the default viewing mode for the PDF when opened in Adobe Acrobat Reader.

The following 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 2007 Corel Corporation. All rights reserved.