Object Model Reference : Classes : E : EffectExtrude : Properties : EffectExtrude.Type |
Property Type As cdrExtrudeType
Member of EffectExtrude
The Type property returns or specifies the extrusion type.
This property returns cdrExtrudeType.
The following VBA example changes the type of all extrusions from Back Parallel to Small Back.
Sub Test() |
Dim s As Shape |
For Each s In ActivePage.Shapes |
If s.Type = cdrExtrudeGroupShape Then |
If s.Effect.Extrude.Type = cdrExtrudeBackParallel Then |
s.Effect.Extrude.Type = cdrExtrudeSmallBack |
End If |
End If |
Next s |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.