Share via


SlideShowTransition.EntryEffect Property

PowerPoint Developer Reference

Returns or sets the special effect applied to the specified slide transition. Read/write.

Syntax

expression.EntryEffect

expression   A variable that represents a SlideShowTransition object.

Return Value
PpEntryEffect

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 is animated during a slide show.

Visual Basic for Applications
  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

See Also