Previous Document Next Document

Object Model Reference : Classes : E : EffectDropShadow : Properties : EffectDropShadow.FeatherType


EffectDropShadow.FeatherType

Property FeatherType As cdrFeatherType

Description

Member of EffectDropShadow

The FeatherType property returns or specifies the type of feather for a drop shadow.

This property returns cdrFeatherType.

VBA example

The following VBA example applies 50% outside feathering with inverse squared edges to all drop shadows on the active page.

Sub Test()
 Dim s As Shape
 For Each s In ActivePage.Shapes
  If s.Type = cdrDropShadowGroupShape Then
   With s.Effect.DropShadow
    .FeatherType = cdrFeatherOutside
    .FeatherEdge = cdrEdgeInverseSquared
    .Feather = 50
   End With
  End If
 Next s
End Sub

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.