API Documentation > CorelDRAW > 2025-v26 > Effect > IVGEffect
Effect.Envelope property
Gets the envelope effect for the object
Syntax:
Property Get Envelope() As EffectEnvelope
Remarks:
The Envelope property returns the EffectEnvelope object for the envelope effect.
Examples:
The following VBA example selects a preset envelope for the selected shape.
Sub Test()
Dim e As Effect
For Each e In ActiveShape.Effects
  If e.Type = cdrEnvelope Then

 e.Envelope.Select 5
  End If
Next e 
End Sub