Share via


Effect.EffectInformation Property

Returns an EffectInformation object that represents information for a specified animation effect.

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

Syntax

'Declaration
ReadOnly Property EffectInformation As EffectInformation
    Get
'Usage
Dim instance As Effect
Dim value As EffectInformation

value = instance.EffectInformation
EffectInformation EffectInformation { get; }

Property Value

Type: Microsoft.Office.Interop.PowerPoint.EffectInformation
EffectInformation

Examples

This example adds a sound effect to the main animation sequence for a given shape.

Sub AddSoundEffect()

    Dim effMain As Effect

    Set effMain = ActivePresentation.Slides(1).TimeLine.MainSequence(1)

    MsgBox effMain.EffectInformation.AfterEffect

End Sub

See Also

Reference

Effect Interface

Effect Members

Microsoft.Office.Interop.PowerPoint Namespace