API Documentation > CorelDRAW > 2025-v26 > PrintSeparations > IPrnVBAPrintSeparations
PrintSeparations.AutoSpreadFixed property
Specifies whether the color trapping is performed by a fixed amount of spread
Syntax:
Property Get AutoSpreadFixed() As Boolean
Property Let AutoSpreadFixed(ByVal Value As Boolean)
Remarks:
The AutoSpreadFixed property returns or specifies a Boolean (True or False) value that indicates whether to use outlines of equal width for auto-spreading.
Examples:
The following VBA example displays the current value of the AutoSpreadFixed property.
Sub Test()
With ActiveDocument
  MsgBox "The current value for AutoSpreadFixed is " & _

 .PrintSettings.Separations.AutoSpreadFixed
End With 
End Sub