![]() |
![]() |
PDFVBASettings.MaintainOPILinks
Property MaintainOPILinks As Boolean
Member of PDFVBASettings
The MaintainOPILinks property determines whether low-resolution images are subsittued for high-resolution iamges when publishing to PDF.
The following code example sets options for publishing the active document to PDF. Complex fills are rendered as bitmaps; halftone screens and overprints are included, while 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
![]() |
![]() |
![]() |
Copyright 2007 Corel Corporation. All rights reserved.