Object Model Reference : Classes : P : PDFVBASettings : Properties : PDFVBASettings.ColorResolution |
Property ColorResolution As Long
Member of PDFVBASettings
The ColorResolution property sets the resolution for the downsampled color bitmaps in a PDF document.
• |
For the resolution to be applied, the DownsampleColor option must be set to
True.
|
The following VBA example publishes the active document to PDF. Color and grayscale bitmaps are downsampled to 72 dpi, and monochrome bitmaps are downsampled to 150 dpi.
Sub Test() |
With ActiveDocument.PDFSettings |
DownsampleColor = True |
DownsampleGray = True |
DownsampleMono = True |
ColorResolution = 72 |
GrayResolution = 72 |
MonoResolution = 150 |
End With |
ActiveDocument.PublishToPDF "C:\MyDocument.pdf" |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.