返回介绍

By 属性

发布于 2019-10-04 14:08:59 字数 2613 浏览 1036 评论 0 收藏 0

全部显示

应用于ColorEffect 对象的 By 属性。

返回ColorFormat 对象,该对象代表对象的颜色更改为以 RGB 格式表示的指定数值。

expression.By

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

应用于RotationEffect 对象的 By 属性。

设置或返回 Single 类型值,该值代表对象旋转的指定度数;例如,数值 180 表示对象旋转 180 度。可读写。

expression.By

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

说明

指定的对象将围绕其中心旋转,其中心在屏幕上的位置保持不变。

如果同时设置了旋转效果的 ByTo 属性,则 By 属性的值将被忽略。

浮点数有效(例如 55.5),但是负数无效。

说明

请勿将此属性与 ScaleEffectMotionEffect 对象的 ByXByY 属性相混淆,后者仅用于缩放或动作效果。

示例

应用于 ColorEffect 对象。

本示例添加颜色效果并且更改其颜色。本示例假设当前演示文稿的第一张幻灯片中至少有一个形状。

Sub AddAndChangeColorEffect()
    Dim effBlinds As Effect
    Dim tmlnShape As TimeLine
    Dim shpShape As Shape
    Dim animBehavior As AnimationBehavior
    Dim clrEffect As ColorEffect

    'Sets shape, timing, and effect
    Set shpShape = ActivePresentation.Slides(1).Shapes(1)
    Set tmlnShape = ActivePresentation.Slides(1).TimeLine
    Set effBlinds = tmlnShape.MainSequence.AddEffect _
        (Shape:=shpShape, effectId:=msoAnimEffectBlinds)

    'Adds animation behavior and color effect
    Set animBehavior = tmlnShape.MainSequence(1).Behaviors _
        .Add(Type:=msoAnimTypeColor)
    Set clrEffect = animBehavior.ColorEffect

    'Specifies color
    clrEffect.By.RGB = RGB(Red:=255, Green:=0, Blue:=0)
End Sub

应用于 RotationEffect 对象。

本示例添加旋转效果并且更改其旋转方式。

Sub AddAndChangeRotationEffect()
    Dim effBlinds As Effect
    Dim tmlnShape As TimeLine
    Dim shpShape As Shape
    Dim animBehavior As AnimationBehavior
    Dim rtnEffect As RotationEffect

    'Sets shape, timing, and effect
    Set shpShape = ActivePresentation.Slides(1).Shapes(1)
    Set tmlnShape = ActivePresentation.Slides(1).TimeLine
    Set effBlinds = tmlnShape.MainSequence.AddEffect _
        (Shape:=shpShape, effectId:=msoAnimEffectBlinds)

    'Adds animation behavior and sets rotation effect
    Set animBehavior = tmlnShape.MainSequence(1).Behaviors _
        .Add(Type:=msoAnimTypeRotation)
    Set rtnEffect = animBehavior.RotationEffect
    rtnEffect.By = 270
End Sub

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

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

发布评论

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