![]() |
![]() |
EffectBlend.EndShape
Property EndShape As Shape
Member of EffectBlend
The EndShape property returns or sets the end shape for a blend effect.
The following code example changes all blends to progress from yellow to green by changing the control shapes fills:
Sub Test() Dim s As Shape For Each s In ActivePage.Shapes If s.Type = cdrBlendGroupShape Then s.Effect.Blend.StartShape.Fill.UniformColor.RGBAssign 255, 255, 0 s.Effect.Blend.EndShape.Fill.UniformColor.RGBAssign 0, 128, 0 End If Next s End Sub
![]() |
![]() |
![]() |
Copyright 2007 Corel Corporation. All rights reserved.