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