API Documentation > CorelDRAW > 2025-v26 > PDFVBASettings > IPDFVBASettings
PDFVBASettings.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 specifies the number of steps to use when banding fountain fills.
Examples:
The following VBA example publishes the active document to PDF and applies 100 steps to fountain fills.
Sub Test()
ActiveDocument.PDFSettings.FountainSteps = 100
ActiveDocument.PublishToPDF "C:\MyDocument.pdf" 
End Sub