Previous Document Next Document

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


PDFVBASettings.FileInformation

Property FileInformation As Boolean

Description

Member of PDFVBASettings

The FileInformation property determines whether to include file information in a PDF document.

VBA example

The following VBA example publishes the document to PDF. Crop marks, densitometer scales, file information, and color registration marks are included in the PDF document.

Sub Test()
 With ActiveDocument.PDFSettings
  .CropMarks = True
  .DensitometerScales = True
  .FileInformation = True
  .RegistrationMarks = True
 End With
 ActiveDocument.PublishToPDF "C:\MyDocument.pdf"
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.