如何更改CommandButton颜色,PowerPoint VBA

时间:2018-06-11 19:55:52

标签: vba colors powerpoint-vba

我希望CommandButton的颜色在单击时变为黑色。我在PowerPoint中使用VBA编程。我已经尝试过了:

With ActivePresentation.Shapes("MyButton").Fill
    .Color.RGB = RGB(0, 0, 0)
End With

当然,上面的代码应该在点击时运行。

提前致谢。

1 个答案:

答案 0 :(得分:0)

哇!我无法相信我这么快就想到了这个! 这是有效的代码:

MyButton.BackColor = 0

它将背景颜色更改为黑色!