API Documentation > CorelDRAW > 2025-v26 > Effect > IVGEffect
Effect.Clear method
Clears the blend effect for the object
Syntax:
Sub Clear()
Remarks:
The Clear method removes the current effect from an object.
Examples:
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