返回介绍

ConvertToAnimateInReverse 方法

发布于 2019-10-04 14:07:04 字数 1721 浏览 830 评论 0 收藏 0

全部显示

确定文本是否按相反的顺序动画显示。返回一个代表文本动画的Effect 对象。

expression.ConvertToAnimateInReverse(Effect, animateInReverse)

expression必选。该表达式返回一个 Sequence 对象。

Effect必选。Effect 类型。应用反向的动画效果。

animateInReverse必选。MsoTriState 类型。确定文本动画的顺序。

MsoTriState 可以是下列 MsoTriState 类型常数之一。
msoCTrue
msoFalse文本按正常顺序动画显示。
msoTriStateMixed
msoTriStateToggle
msoTrue文本按相反顺序动画显示。

示例

本示例在幻灯片上创建一个带文本的形状并向该形状中添加一个随机动画,并确保形状的文本按相反顺序动画显示。

Sub AnimateInReverse()

    Dim sldActive As Slide
    Dim timeMain As TimeLine
    Dim shpRect As Shape

    ' Create a slide, add a rectangular shape to the slide, and
    ' access the slide's animation timeline.
    With ActivePresentation
        Set sldActive = .Slides.Add(Index:=1, Layout:=ppLayoutBlank)
        Set shpRect = sldActive.Shapes.AddShape(Type:=msoShapeRectangle, _
            Left:=100, Top:=100, Width:=300, Height:=150)
        Set timeMain = sldActive.TimeLine
    End With

    shpRect.TextFrame.TextRange.Text = "This is a rectangle."

    ' Add a random animation effect to the rectangle,
    ' and animate the text in reverse.
    With timeMain.MainSequence
        .ConvertToAnimateInReverse _
            Effect:=.AddEffect(Shape:=shpRect, effectId:=msoAnimEffectRandom), _
            AnimateInReverse:=msoTrue
    End With

End Sub

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文