Object Model Reference : Classes : P : PrintOptions : Properties : PrintOptions.RasterizeResolution |
Property RasterizeResolution As Long
Member of PrintOptions
The RasterizeResolution property returns or specifies the resolution of a bitmap.
• |
This property is used in conjunction with the RasterizePage property, which
lets you print a document as a bitmap.
|
The following VBA example sets each page to print as a bitmap, sets the resolution of the bitmap to 300 dpi, and then prints the document.
Sub Test() |
With ActiveDocument.PrintSettings.Options |
.RasterizePage = True |
.RasterizeResolution = 300 |
End With |
ActiveDocument.PrintOut |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.