SlideShowSettings.PointerColor 属性 (PowerPoint)
返回指定演示文稿作为一个 ColorFormat 对象指针的颜色。 此为只读属性。
语法
expression。 PointerColor
表达 一个代表 SlideShowSettings 对象的变量。
返回值
ColorFormat
备注
指针颜色随演示文稿一起保存,并且是演示文稿每次显示时的默认绘图笔颜色。
若要将指针更改为笔,将 PointerTypeppSlideShowPointerPen 。
示例
本示例将当前演示文稿的默认绘图笔颜色设为蓝色,然后开始一个幻灯片放映,将指针改变为绘图笔,并设定绘图笔颜色仅在此幻灯片放映中为红色。
With ActivePresentation.SlideShowSettings
.PointerColor.RGB = RGB(0, 0, 255) 'blue
With .Run.View
.PointerColor.RGB = RGB(255, 0, 0) 'red
.PointerType = ppSlideShowPointerPen
End With
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。