Object Model Reference : Classes : T : Transparency : Properties : Transparency.Fountain |
Property Fountain As FountainFill
Member of Transparency
The Fountain property returns a fountain fill (or FountainFill object) representing the settings for a fountain-fill transparency.
The following VBA example sets the direction angle of all fountain-fill transparencies to 45°.
Sub Test() |
Dim s As Shape |
For Each s In ActivePage.Shapes |
If s.Transparency.Type = cdrFountainTransparency Then |
s.Transparency.Fountain.SetAngle 45 |
End If |
Next s |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.