| Name | Type | Description |
|---|---|---|
| StartColor | Specifes the color to appear at the beginning of the fountain fill. |
|
| EndColor | Specifies the color to appear at the end of the fountain fill. |
|
| Type | Specifies the type of fountain fill, and returns cdrFountainFillType. |
|
| Angle |
Double
|
Specifies the degree of the angle in a linear, conical, or square fountain fill. Changing the angle of gradation affects the slant of the fountain fill. Positive values rotate the fill counterclockwise; negative values rotate it clockwise. |
| Steps |
Long
|
Specifies the number of bands (steps) used to display the fountain fill. |
| EdgePad |
Long
|
Specifies the length of solid colors at the beginning and end of the fountain fill before they start blending with the next color in the fountain fill. You can change the edge pad of linear, radial, and square fountain fills. Higher values let the colors remain solid longer before blending, causing the colors to spread more quickly; lower values result in a smooth transformation between the two colors. |
| MidPoint |
Long
|
Specifies an imaginary line between two colors in the fountain fill, letting you set the point at which two colors in the fill converge. |
| BlendType | Specifies the type of blend for the fountain fill. |
|
| CenterOffsetX |
Double
|
Specifies the horizontal offset of the fountain fill. |
| CenterOffsetY |
Double
|
Specifies the vertical offset of the fountain fill. |
Sub Test() Dim sr As ShapeRange Set sr = ActivePage.FindShapes(Type:=cdrTextShape) sr.ApplyFountainFill CreateRGBColor(255, 0, 0), CreateRGBColor(255, 255, 0), cdrConicalFountainFill, 45 End Sub