Previous Document Next Document

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


PDFVBASettings.ComplexFillsAsBitmaps

Property ComplexFillsAsBitmaps As Boolean

Description

Member of PDFVBASettings

The ComplexFillsAsBitmaps property determines whether complex fills are rendered as bitmaps in a PDF document.

VBA example

The following VBA example sets options for publishing the active document to PDF. Complex fills are rendered as bitmaps; halftone screens and overprints are included, while Open Prepress Interface (OPI) links and spot colors are not maintained.

Sub Test()
 With ActiveDocument.PDFSettings
  ComplexFillsAsBitmaps = True
  Halftones = True
  MaintainOPILinks = False
  Overprints = True
  SpotColors = False
 End With
ActiveDocument.PublishToPDF "C:\MyDocument.pdf"
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.