EntryEffect Property

Applies To

AnimationSettings object, SlideShowTransition object.

Description

For the AnimationSettings object, this property returns or sets the special effect applied to the animation for the specified shape. For the SlideShowTransition object, this property returns or sets the special effect applied to the specified slide transition. Read/write Long.

Can be one of the following PpEntryEffect constants:

  • ppEffectAppear
  • ppEffectBlindsHorizontal
  • ppEffectBlindsVertical
  • ppEffectBoxIn
  • ppEffectBoxOut
  • ppEffectCheckerboardAcross
  • ppEffectCheckerboardDown
  • ppEffectCoverDown
  • ppEffectCoverLeft
  • ppEffectCoverLeftDown
  • ppEffectCoverLeftUp
  • ppEffectCoverRight
  • ppEffectCoverRightDown
  • ppEffectCoverRightUp
  • ppEffectCoverUp
  • ppEffectCrawlFromDown
  • ppEffectCrawlFromLeft
  • ppEffectCrawlFromRight
  • ppEffectCrawlFromUp
  • ppEffectCut
  • ppEffectCutThroughBlack
  • ppEffectDissolve
  • ppEffectFade
  • ppEffectFlashOnceFast
  • ppEffectFlashOnceMedium
  • ppEffectFlashOnceSlow
  • ppEffectFlyFromBottom
  • ppEffectFlyFromBottomLeft
  • ppEffectFlyFromBottomRight
  • ppEffectFlyFromLeft
  • ppEffectFlyFromRight
  • ppEffectFlyFromTop
  • ppEffectFlyFromTopLeft
  • ppEffectFlyFromTopRight
  • ppEffectMixed
  • ppEffectNone
  • ppEffectPeekFromDown
  • ppEffectPeekFromLeft
  • ppEffectPeekFromRight
  • ppEffectPeekFromUp
  • ppEffectRandom
  • ppEffectRandomBarsHorizontal
  • ppEffectRandomBarsVertical
  • ppEffectSplitHorizontalIn
  • ppEffectSplitHorizontalOut
  • ppEffectSplitVerticalIn
  • ppEffectSplitVerticalOut
  • ppEffectStripsDownLeft
  • ppEffectStripsDownRight
  • ppEffectStripsLeftDown
  • ppEffectStripsLeftUp
  • ppEffectStripsRightDown
  • ppEffectStripsRightUp
  • ppEffectStripsUpLeft
  • ppEffectStripsUpRight
  • ppEffectUncoverDown
  • ppEffectUncoverLeft
  • ppEffectUncoverLeftDown
  • ppEffectUncoverLeftUp
  • ppEffectUncoverRight
  • ppEffectUncoverRightDown
  • ppEffectUncoverRightUp
  • ppEffectUncoverUp
  • ppEffectWipeDown
  • ppEffectWipeLeft
  • ppEffectWipeRight
  • ppEffectWipeUp

Remarks

If the TextLevelEffect property for the specified shape is set to ppAnimateLevelNone (the default value) or the Animate property is set to False, you won't see the special effect you've applied with the EntryEffect property.

Example

This example adds a title slide to the active presentation and sets the title to fly in from the right whenever it's animated during a slide show.

With ActivePresentation.Slides.Add(1, ppLayoutTitleOnly).Shapes(1)
        .TextFrame.TextRange.Text = "Sample title"
    With .AnimationSettings
        .TextLevelEffect = ppAnimateByAllLevels
        .EntryEffect = ppEffectFlyFromRight
        .Animate = True
    End With
End With