PPT里,如何控制其他幻灯片里的按钮属性? 用哪个语句? 急
我在用ppt做点东西。PPT里, 有2个slide,
第2个slide里面有个按钮“commandbutton2”
写vba代码的时候如何控制这个按钮?
(假设是slide2里的第一个shape, (属于shpae吗?好像不是) )
Activepresentation.slides(2).shape(1).commandbutton2.visible=false
不对。
这个要怎么写?
Activepresentation.Slides(2).commandbutton2
这么写也不对。
该如何写?谢谢!!
百度居然没有找到关于这个的内容。 ActivePresentation.Slides(2).Shapes("CommandButton1").Visible = msoFalse
复制代码 谢谢您..,,,,,,,,,,,,,,, ActivePresentation.Slides(2).Shapes("CommandButton1").Visible = msoFalse
设置是否可见,可以用这个.
但是设置按钮是否可用, 好像他的子集里没有 enabled 属性.
ActivePresentation.Slides(2).Shapes("CommandButton1").Enabled = false 这句不可用. ActivePresentation.Slides(2).Shapes("CommandButton1").OLEFormat.Object.Enabled = False
复制代码
页:
[1]