Object Model Reference : Classes : E : Effect : Properties : Effect.Blend |
Property Blend As EffectBlend
Member of Effect
The Blend property returns the EffectBlend object for the blend effect.
The Blend property returns a read-only value.
The following VBA example determines whether a blend effect has been applied to the selected shape. If so, it changes the number of blend steps to three.
Sub Test() |
Dim e As Effect |
For Each e In ActiveShape.Effects |
If e.Type = cdrBlend Then |
e.Blend.Steps = 3 |
Exit For |
End If |
Next e |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.