Previous Document Next Document

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


PDFVBASettings.Thumbnails

Property Thumbnails As Boolean

Description

Member of PDFVBASettings

The Thumbnails property determines whether to include thumbnails in a PDF document.

VBA example

The following VBA example publishes the active document to PDF. The resulting document includes bookmarks, hyperlinks, and thumbnails.

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.