SlideShowView.PointerType 属性 (PowerPoint)

返回或设置在幻灯片放映中使用的指针类型。 读/写。

语法

expressionPointerType

表达 一个代表 SlideShowView 对象的变量。

返回值

PpSlideShowPointerType

备注

PointerType 属性的值可以是其中一个 PpSlideShowPointerType 常量。

ppSlideShowPointerAlwaysHidden
ppSlideShowPointerArrow
ppSlideShowPointerAutoArrow
ppSlideShowPointerNone
ppSlideShowPointerPen

示例

本示例执行当前演示文稿的一个幻灯片放映,将指针改变为绘图笔,并将该幻灯片放映的绘图笔颜色设为红色。

Set currView = ActivePresentation.SlideShowSettings.Run.View

With currView

    .PointerColor.RGB = RGB(255, 0, 0)

    .PointerType = ppSlideShowPointerPen

End With

另请参阅

SlideShowView 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。