CommandEffect Interface

Represents a command effect for an animation behavior. You can send events, call functions, and send OLE verbs to embedded objects using this object.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("914934EF-5A91-11CF-8700-00AA0060263B")> _
Public Interface CommandEffect
'Usage
Dim instance As CommandEffect
[GuidAttribute("914934EF-5A91-11CF-8700-00AA0060263B")]
public interface CommandEffect

Remarks

Use the CommandEffectproperty of the AnimationBehavior object to return a CommandEffect object. Command effects can be changed using the CommandEffect object's Command and Type properties.

Examples

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

See Also

Reference

CommandEffect Members

Microsoft.Office.Interop.PowerPoint Namespace