API Documentation > CorelDRAW > 2025-v26 > SeparationPlate > IPrnVBASeparationPlate
SeparationPlate.OverprintText property
Determines whether text should be overprinted on this color plate
Syntax:
Property Get OverprintText() As Boolean
Property Let OverprintText(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 SeparationPlate.OverprintGraphic and 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