Share via


AnimationBehavior.CommandEffect Property

PowerPoint Developer Reference

Returns a CommandEffect object for the specified animation behavior. Read-only.

Syntax

expression.CommandEffect

expression   A variable that represents a AnimationBehavior object.

Return Value
CommandEffect

Remarks

You can send events, call functions, and send OLE verbs to embedded objects using this property.

Example

The following example shows how to set a command effect animation behavior.

Visual Basic for Applications
      Set bhvEffect = effectNew.Behaviors.Add(msoAnimTypeCommand)
 
    With bhvEffect.CommandEffect
         .Type = msoAnimCommandTypeVerb
         .Command = Play
    End With

See Also