Previous Document Next Document

Object Model Reference : Classes : E : EffectExtrude : Properties : EffectExtrude.Type


EffectExtrude.Type

Property Type As cdrExtrudeType

Description

Member of EffectExtrude

The Type property returns or specifies the extrusion type.

This property returns cdrExtrudeType.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.