Objeto AnimationBehaviors (PowerPoint)
Representa una colección de objetos AnimationBehavior.
Ejemplo:
Utilice el método Add para agregar un comportamiento de animación. En el siguiente ejemplo se agrega un comportamiento de giro animado de cinco segundos a la secuencia de animación principal de la primera diapositiva.
Sub AnimationObject()
Dim timeMain As TimeLine
'Reference the main animation timeline
Set timeMain = ActivePresentation.Slides(1).TimeLine
'Add a five-second animated rotation behavior
'as the first animation in the main animation sequence
timeMain.MainSequence(1).Behaviors.Add Type:=msoAnimTypeRotation, Index:=1
End Sub
Consulte también
Referencia del modelo de objetos de PowerPoint
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.