The RasterizeResolution property returns or specifies the resolution of a document when printed as a bitmap. This property is used in conjunction with the PrintOptions.RasterizePage property, which prints a document as a bitmap.
Examples:
The following VBA example specifies each page to print as a bitmap with a resolution of 300 dpi, and it then prints the document.
Sub Test()
With ActiveDocument.PrintSettings.Options
.RasterizePage = True
.RasterizeResolution = 300
End With
ActiveDocument.PrintOut
End Sub