Previous Document Next Document

Object Model Reference : Classes : E : Effect : Properties : Effect.Envelope


Effect.Envelope

Property Envelope As EffectEnvelope

Description

Member of Effect

The Envelope property returns the EffectEnvelope object for the envelope effect.

The Envelope property returns a read-only value.

VBA example

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

Previous Document Next Document Back to Top

Copyright 2013 Corel Corporation. All rights reserved.