Timing.RepeatCount プロパティ (PowerPoint)
アニメーションを繰り返す回数を設定します。 値の取得と設定が可能です。
構文
式。 RepeatCount
式Timing オブジェクトを表す変数。
戻り値
Long
例
次の使用例は、図形を作成し、その図形にアニメーションを追加して、アニメーションを 2 回繰り返し実行します。
Sub AddShapeSetTiming()
Dim effDiamond As Effect
Dim shpRectangle As Shape
Set shpRectangle = ActivePresentation.Slides(1).Shapes _
.AddShape(Type:=msoShapeRectangle, Left:=100, _
Top:=100, Width:=50, Height:=50)
Set effDiamond = ActivePresentation.Slides(1).TimeLine.MainSequence _
.AddEffect(Shape:=shpRectangle, effectId:=msoAnimEffectPathDiamond)
With effDiamond.Timing
.Duration = 5 ' Length of effect.
.RepeatCount = 2 ' How many times to repeat.
End With
End Sub
関連項目
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。