SlideShowTransition.EntryEffect Property
Returns or sets the special effect applied to the specified slide transition. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property EntryEffect As PpEntryEffect
Get
Set
'Usage
Dim instance As SlideShowTransition
Dim value As PpEntryEffect
value = instance.EntryEffect
instance.EntryEffect = value
PpEntryEffect EntryEffect { get; set; }
Property Value
Type: Microsoft.Office.Interop.PowerPoint.PpEntryEffect
PpEntryEffect
Remarks
If the TextLevelEffect property for the specified shape is set to ppAnimateLevelNone (the default value) or the AnimateAction property is set to False, you won't see the special effect you've applied with the EntryEffect property.
Examples
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.
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