PointerType Property

Applies To

SlideShowView object.

Description

Returns or sets the type of pointer used in the slide show. Can be one of the following PpSlideShowPointerType constants: ppSlideShowPointerAlwaysHidden, ppSlideShowPointerArrow, ppSlideShowPointerNone, or ppSlideShowPointerPen. Read/write Long.

Example

This example runs a slide show of the active presentation, changes the pointer to a pen, and sets the pen color for this slide show to red.

Set currView = ActivePresentation.SlideShowSettings.Run.View
With currView
    .PointerColor.RGB = RGB(255, 0, 0)
    .PointerType = ppSlideShowPointerPen
End With