Previous Document Next Document

Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.OverprintGraphic


SeparationPlate.OverprintGraphic

Property OverprintGraphic As Boolean

Description

Member of SeparationPlate

The OverprintGraphic property returns or specifies whether graphics are overprinted by the current separation plate.

VBA example

The following VBA example iterates through the collection of separation plates and sets the values of the OverprintGraphic and OverprintText properties to False.

Sub Test()
 Dim intPlateCounter As Integer
 With ActiveDocument.PrintSettings.Separations
  For intPlateCounter = 1 To .Plates.Count - 1
   .Plates(intPlateCounter).OverprintGraphic = False
   .Plates(intPlateCounter).OverprintText = False
  Next intPlateCounter
 End With
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.