API Documentation > CorelDRAW > 2025-v26 > FountainFill > IVGFountainFill
FountainFill.Angle property
Gets a fountain fill's angle
Syntax:
Property Get Angle() As Double
Remarks:
The Angle property returns the angle of a fountain fill. Positive values rotate the fill counterclockwise, while negative values rotate it clockwise. You can use the SetAngle method to change the angle of fountain fill.
Examples:
The following VBA example displays the angle of the fountain fill of the selected shape.
Sub Test()
MsgBox ActiveShape.Fill.Fountain.Angle 
End Sub