Object Model Reference : Classes : E : Effect : Methods : Effect.Clear |
Sub Clear()
Member of Effect
The Clear method removes the current effect from an object.
The following VBA example clears all effects applied to the active shape.
Sub Test() |
Dim e As Effect |
For Each e In ActiveShape.Effects |
e.Clear |
Next e |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.