Previous Document Next Document

Object Model Reference : Classes : P : PrintTrapping : Properties : PrintTrapping.ObjectsToImage


PrintTrapping.ObjectsToImage

Property ObjectsToImage As Boolean

Description

Member of PrintTrapping

The ObjectsToImage property determines whether vector objects are trapped to images.

VBA example

The following VBA example stores the current setting of objects-to-image trapping. It displays a dialog box indicating that this option is enabled and then restores the previous setting.

Sub Test()
 Dim bObjectsToImage As Boolean
 With ActiveDocument.PrintSettings
  With .Trapping
   bObjectsToImage = .ObjectsToImage
   .ObjectsToImage = True
  End With
  .ShowDialog
  .Trapping.ObjectsToImage = bObjectsToImage
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.