AnimationBehaviors 对象 (PowerPoint)
表示 AnimationBehavior 对象的集合。
示例
使用Add方法可添加一个动画动作。 下面的示例向第一张幻灯片的主动画序列添加一个五秒钟的动画的旋转动作。
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
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。