CommandEffect Property

Microsoft PowerPoint Visual Basic

CommandEffect Property

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

expression.CommandEffect

expression    Required. An expression that returns one of the objects in the Applies To list.

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.

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