PowerPoint (的 MotionEffect 物件)
代表 AnimationBehavior 物件的動畫效果。
範例
使用AnimationBehavior物件的MotionEffect屬性可傳回MotionEffect物件。 下列範例會參照指定的動畫行為的動畫效果。
ActivePresentation.Slides(1).TimeLine.MainSequence.Item.Behaviors(1).MotionEffect
使用 MotionEffect 物件的ByX 、ByY 、FromX 、FromY 、ToX 、 及ToY屬性來建構移動路徑。 ToY 和 ToX 屬性都會百分比,其中 ToX = 1.0 表示 100%的投影片寬度與 ToY = 1.0 表示 100%的投影片的高度。 下列範例會將圖案新增至第一張投影片,並建立移動路徑。
Sub AddMotionPath()
Dim shpNew As Shape
Dim effNew As Effect
Dim aniMotion As AnimationBehavior
Set shpNew = ActivePresentation.Slides(1).Shapes _
.AddShape(Type:=msoShape5pointStar, Left:=0, _
Top:=0, Width:=100, Height:=100)
Set effNew = ActivePresentation.Slides(1).TimeLine.MainSequence _
.AddEffect(Shape:=shpNew, effectId:=msoAnimEffectCustom, _
Trigger:=msoAnimTriggerWithPrevious)
Set aniMotion = effNew.Behaviors.Add(msoAnimTypeMotion)
With aniMotion.MotionEffect
.FromX = 0
.FromY = 0
.ToX = .5
.ToY = .5
End With
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。