GradientDegree Property Example
This example adds a rectangle to myDocument
and sets the degree of its fill gradient to match that of the shape named "Rectangle 2." If Rectangle 2 doesn't have a one-color gradient fill, this example fails.
Set myDocument = ActiveDocument
With myDocument.Shapes
gradDegree1 = .Item("Rectangle 2").Fill.GradientDegree
With .AddShape(msoShapeRectangle, 0, 0, 40, 80).Fill
.ForeColor.RGB = RGB(0, 128, 128)
.OneColorGradient msoGradientHorizontal, 1, gradDegree1
End With
End With