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