API Documentation > CorelDRAW > 2025-v26 > PrintOptions > IPrnVBAPrintOptions
PrintOptions.FountainSteps property
Specifies the default number of steps for fountain fills
Syntax:
Property Get FountainSteps() As Long
Property Let FountainSteps(ByVal Value As Long)
Remarks:
The FountainSteps property returns or specifies the number of steps to use when printing fountain fills.
Examples:
The following VBA example displays the current value for the FountainSteps property, changes the value to 256, and displays the new value.
Sub Test()
MsgBox "Fountain fills will print using " & _
  ActiveDocument.PrintSettings.Options.FountainSteps & " steps."
ActiveDocument.PrintSettings.Options.FountainSteps = 256
MsgBox "Fountain fills will now print using " & _
  ActiveDocument.PrintSettings.Options.FountainSteps & " steps." 
End Sub