API Documentation > CorelDRAW > 2025-v26 > SeparationPlate > IPrnVBASeparationPlate
SeparationPlate.OverprintGraphic property
Determines whether graphics should be overprinted on this color plate
Syntax:
Property Get OverprintGraphic() As Boolean
Property Let OverprintGraphic(ByVal Value As Boolean)
Remarks:
The OverprintGraphic property returns or specifies a Boolean (True or False) value that indicates whether graphics are overprinted by the current separation plate.
Examples:
The following VBA example iterates through the collection of separation plates and specifies the values of the OverprintGraphic and SeparationPlate.OverprintText properties as 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