Share via


EffectInformation.AfterEffect Property

Returns an PpAfterEffect constant that indicates whether an after effect appears dimmed, hidden, or unchanged after it runs. Read-only.

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

Syntax

'Declaration
ReadOnly Property AfterEffect As MsoAnimAfterEffect
    Get
'Usage
Dim instance As EffectInformation
Dim value As MsoAnimAfterEffect

value = instance.AfterEffect
MsoAnimAfterEffect AfterEffect { get; }

Property Value

Type: Microsoft.Office.Interop.PowerPoint.MsoAnimAfterEffect

Remarks

The value returned by the AfterEffect property can be one of these PpAfterEffect constants.

ppAfterEffectDim

ppAnimAfterEffectHide

ppAfterEffectHideOnNextClick

ppAfterEffectMixed

ppAfterEffectNone

Examples

This example specifies that the title on slide one in the active presentation is to appear dimmed after the title is built. If the title is the last or only shape to be built on slide one, the text won't be dimmed.

With ActivePresentation.Slides(1).Shapes.Title.AnimationSettings

    .Animate = True

    .TextLevelEffect = ppAnimateByAllLevels

    .AfterEffect= ppAfterEffectDim

End With

See Also

Reference

EffectInformation Interface

EffectInformation Members

Microsoft.Office.Interop.PowerPoint Namespace