Object Model Reference : Classes : S : SeparationPlate : Properties : SeparationPlate.OverprintGraphic |
Property OverprintGraphic As Boolean
Member of SeparationPlate
The OverprintGraphic property returns or specifies whether graphics are overprinted by the current separation plate.
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 |
Copyright 2013 Corel Corporation. All rights reserved.