Previous Document Next Document
EffectDistortion.CenterDistortion

Sub CenterDistortion()

Member of EffectDistortion

The CenterDistortion method centers a distortion effect in its shape.

The following code example centers all distortion effects on the page:

Sub Test() 
 Dim s As Shape, eff As Effect 
 For Each s In ActivePage.Shapes 
  For Each eff In s.Effects 
   If eff.Type = cdrDistortion Then 
    eff.Distortion.CenterDistortion 
   End If 
  Next eff 
 Next s 
End Sub 

Previous Document Next Document Back to Top

Copyright 2007 Corel Corporation. All rights reserved.