API Documentation > CorelDRAW > 2025-v26 > FountainFill > IVGFountainFill
FountainFill.SetAngle method
Sets a fountain fill's angle
Syntax:
Sub SetAngle(ByVal Angle As Double)
Parameters:
Name Type Description
Angle
Double
Remarks:
The Angle property rotates the fountain-fill vector. Positive values rotate the fill counterclockwise; negative values rotate it clockwise.
Examples:
The following VBA example sets the rotation angle of the fountain fill to 30°.
Sub Test()
ActiveShape.Fill.Fountain.SetAngle 30 
End Sub