Previous Document Next Document
PrintOptions.RasterizePage

Property RasterizePage As Boolean

Member of PrintOptions

The RasterizePage property returns or sets whether a document ir printed as a bitmap.

The following code 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 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.